/* =====================================================
   ASHA YOGA STUDIO — Main Stylesheet
   ===================================================== */
:root {
  --yoga-green: #2e7d32;
  --yoga-green-light: #4caf50;
  --yoga-green-pale: #e8f5e9;
  --yoga-gold: #f9a825;
  --yoga-gold-light: #ffcc02;
  --yoga-gold-pale: #fffde7;
  --yoga-dark: #1a2e1c;
  --yoga-text: #333333;
  --yoga-muted: #666666;
  --yoga-white: #ffffff;
  --yoga-bg-light: #f8fdf8;
  --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --border-radius-card: 16px;
  --shadow-card: 0 8px 32px rgba(46,125,50,0.1);
  --shadow-hover: 0 16px 48px rgba(46,125,50,0.2);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--yoga-text); background: var(--yoga-white); overflow-x: hidden; }

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #1a3a1e 0%, #2e7d32 50%, #1a3a1e 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.yoga-lotus-loader { width: 140px; height: 140px; animation: lotus-breathe 3s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(249,168,37,0.4)); }
.lotus-outer { animation: lotus-rotate 8s linear infinite; transform-origin: 60px 60px; }
.lotus-inner { animation: lotus-rotate-reverse 5s linear infinite; transform-origin: 60px 60px; }
.aura-ring { animation: aura-pulse 2s ease-in-out infinite; transform-origin: 60px 60px; }
.aura-2 { animation-delay: 0.4s; }
.aura-3 { animation-delay: 0.8s; }
@keyframes lotus-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes lotus-rotate-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes lotus-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes aura-pulse { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.3); opacity: 0; } }
.loader-text { color: #a5d6a7; font-family: var(--font-heading); font-size: 22px; font-style: italic; margin-top: 20px; letter-spacing: 3px; }
.dots span { animation: dot-blink 1.4s infinite; opacity: 0; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-blink { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

/* ===== NAVBAR ===== */
.yoga-navbar { background: transparent; padding: 20px 0; transition: var(--transition); }
.yoga-navbar.scrolled { background: rgba(26,46,28,0.97) !important; backdrop-filter: blur(12px); padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.brand-text { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--yoga-white); letter-spacing: 1px; }
.brand-accent { color: var(--yoga-gold); }
.yoga-navbar .nav-link { color: rgba(255,255,255,0.85) !important; font-weight: 500; font-size: 15px; padding: 8px 14px !important; border-radius: 8px; transition: var(--transition); position: relative; }
.yoga-navbar .nav-link::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--yoga-gold); border-radius: 2px; transition: width 0.3s ease; }
.yoga-navbar .nav-link:hover { color: var(--yoga-gold) !important; }
.yoga-navbar .nav-link:hover::after { width: 60%; }
.btn-yoga-cta { background: linear-gradient(135deg, var(--yoga-gold), var(--yoga-gold-light)); color: var(--yoga-dark) !important; font-weight: 700; border-radius: 30px; border: none; transition: var(--transition); font-size: 14px; }
.btn-yoga-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,168,37,0.4); }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.5); z-index: 1000; text-decoration: none; transition: var(--transition); animation: float-pulse 3s ease-in-out infinite; }
.whatsapp-float:hover { background: #128c7e; color: white; transform: scale(1.1); }
.whatsapp-tooltip { position: absolute; right: 72px; background: #25d366; color: white; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.instagram-float { position: fixed; bottom: 100px; right: 30px; width: 52px; height: 52px; background: var(--instagram-gradient); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 20px rgba(188,24,136,0.4); z-index: 1000; text-decoration: none; transition: var(--transition); }
.instagram-float:hover { color: white; transform: scale(1.1); }
@keyframes float-pulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); } }

/* ===== HERO ===== */
.hero-section { position: relative; min-height: 100vh; background: linear-gradient(135deg, #0d1f10 0%, #1a3a1e 35%, #2e5c2e 65%, #1a3a1e 100%); overflow: hidden; }
.hero-bg-layer { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(76,175,80,0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(249,168,37,0.1) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-eyebrow { display: inline-block; color: var(--yoga-gold); font-size: 14px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(40px,6vw,72px); font-weight: 700; color: var(--yoga-white); line-height: 1.1; margin-bottom: 24px; }
.hero-title-accent { color: var(--yoga-gold); font-style: italic; }
.hero-subtitle { color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.hero-cta-group { margin-bottom: 40px; }
.btn-hero-primary { background: linear-gradient(135deg, var(--yoga-gold), var(--yoga-gold-light)); color: var(--yoga-dark); font-weight: 700; padding: 15px 36px; border-radius: 50px; border: none; font-size: 16px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(249,168,37,0.5); color: var(--yoga-dark); }
.btn-hero-outline { background: transparent; color: var(--yoga-white); font-weight: 600; padding: 14px 32px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.4); font-size: 16px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-hero-outline:hover { border-color: var(--yoga-gold); color: var(--yoga-gold); transform: translateY(-2px); }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--yoga-gold); line-height: 1; }
.stat-plus { color: var(--yoga-gold); font-size: 22px; font-weight: 700; }
.stat-label { display: block; color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
.hero-illustration { position: relative; width: 360px; height: 360px; }
.hero-circle-bg { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, rgba(46,125,50,0.08) 60%, transparent 100%); border: 1px solid rgba(76,175,80,0.2); animation: hero-circle-pulse 4s ease-in-out infinite; }
@keyframes hero-circle-pulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } }
.hero-yoga-figure { width: 100%; height: 100%; position: relative; z-index: 2; animation: figure-float 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(76,175,80,0.3)); }
@keyframes figure-float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
.hero-aura { animation: aura-expand 3s ease-in-out infinite; transform-origin: 150px 60px; }
.hero-aura-2 { animation: aura-expand 3s ease-in-out infinite 0.5s; transform-origin: 150px 60px; }
@keyframes aura-expand { 0%,100% { opacity: 0.4; } 50% { opacity: 0; } }
.float-el { animation: el-float 4s ease-in-out infinite; }
.float-el-2 { animation: el-float 5s ease-in-out infinite 1s; }
.float-el-3 { animation: el-float 6s ease-in-out infinite 2s; }
@keyframes el-float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-8px); } }
.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; z-index: 2; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--yoga-gold); border-radius: 2px; animation: scroll-wheel-anim 2s ease-in-out infinite; }
@keyframes scroll-wheel-anim { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

/* === LOTUS + SUNRISE DAWN EFFECT === */
.sunrise-overlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0;
    background: radial-gradient(ellipse at 72% 75%, rgba(255,152,0,0.55) 0%, rgba(255,193,7,0.28) 28%, rgba(255,87,34,0.10) 55%, transparent 74%);
}
.sun-rays-slow { transform-origin: 150px 272px; animation: sun-rays-rotate 22s linear infinite; }
@keyframes sun-rays-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== SECTION COMMON ===== */
.section-eyebrow { display: inline-block; color: var(--yoga-green); font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; position: relative; padding: 0 16px; }
.section-eyebrow::before,.section-eyebrow::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 1px; background: var(--yoga-green); }
.section-eyebrow::before { right: 100%; margin-right: 8px; }
.section-eyebrow::after { left: 100%; margin-left: 8px; }
.section-title { font-family: var(--font-heading); font-size: clamp(26px,4vw,42px); font-weight: 700; color: var(--yoga-dark); margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { color: var(--yoga-muted); font-size: 17px; line-height: 1.75; max-width: 600px; margin: 0 auto; }
.text-yoga-green { color: var(--yoga-green) !important; }
.text-yoga-gold { color: var(--yoga-gold) !important; }
.text-instagram { background: var(--instagram-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== ADVANTAGES ===== */
.advantages-section { background: var(--yoga-bg-light); }
.advantage-card { background: var(--yoga-white); border-radius: var(--border-radius-card); padding: 32px 28px; height: 100%; box-shadow: var(--shadow-card); transition: var(--transition); position: relative; overflow: hidden; border: 1px solid rgba(46,125,50,0.08); }
.advantage-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--yoga-green), var(--yoga-gold)); transform: scaleX(0); transition: transform 0.4s ease; }
.advantage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-icon-wrap { width: 64px; height: 64px; border-radius: 50%; background: var(--icon-bg,#e8f5e9); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.advantage-icon-wrap i { font-size: 26px; color: var(--icon-color,#66bb6a); }
.advantage-card:hover .advantage-icon-wrap { transform: scale(1.1) rotate(5deg); }
.advantage-card h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--yoga-dark); margin-bottom: 12px; }
.advantage-card p { color: var(--yoga-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.advantage-tag { display: inline-block; background: var(--yoga-green-pale); color: var(--yoga-green); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }

/* ===== YOGA TYPES ===== */
.yoga-types-section { background: var(--yoga-white); }
.yoga-type-card { background: var(--yoga-white); border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); height: 100%; border: 1px solid rgba(46,125,50,0.08); }
.yoga-type-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.yoga-type-img-wrap { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.yoga-type-icon { font-size: 60px; color: rgba(255,255,255,0.85); position: relative; z-index: 2; transition: var(--transition); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.yoga-type-card:hover .yoga-type-icon { transform: scale(1.15) rotate(-5deg); color: white; }
.yoga-type-body { padding: 24px; }
.yoga-type-badge { display: inline-block; background: var(--yoga-green-pale); color: var(--yoga-green); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
.yoga-type-body h4 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--yoga-dark); margin-bottom: 10px; }
.yoga-type-body p { color: var(--yoga-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.yoga-type-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.yoga-type-tags span { background: #f5f5f5; color: #666; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 12px; }

/* ===== TRAINER ===== */
.trainer-section { background: var(--yoga-bg-light); }
.trainer-image-wrap { position: relative; display: inline-block; width: 100%; max-width: 400px; }
.trainer-img-bg { position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; border-radius: 20px; background: linear-gradient(135deg, var(--yoga-green-pale), var(--yoga-gold-pale)); border: 2px solid rgba(46,125,50,0.15); }
.trainer-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; position: relative; z-index: 2; box-shadow: 0 20px 60px rgba(46,125,50,0.2); }
.trainer-badge { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--yoga-green), var(--yoga-green-light)); color: white; padding: 10px 24px; border-radius: 30px; font-size: 13px; font-weight: 600; white-space: nowrap; z-index: 3; box-shadow: 0 4px 20px rgba(46,125,50,0.4); }
.trainer-experience-pill { position: absolute; top: 20px; right: -10px; background: var(--yoga-gold); color: var(--yoga-dark); border-radius: 16px; padding: 12px 16px; text-align: center; z-index: 3; box-shadow: 0 4px 20px rgba(249,168,37,0.4); }
.exp-num { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 700; line-height: 1; }
.exp-text { font-size: 11px; font-weight: 600; line-height: 1.3; }
.trainer-bio { color: var(--yoga-muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.trainer-credential { display: flex; align-items: center; gap: 12px; background: var(--yoga-white); padding: 12px 16px; border-radius: 12px; box-shadow: 0 2px 12px rgba(46,125,50,0.08); }
.trainer-credential i { font-size: 18px; }
.trainer-credential span { font-size: 14px; font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--yoga-white); }
.testimonial-card { background: var(--yoga-bg-light); border-radius: var(--border-radius-card); padding: 32px; height: 100%; transition: var(--transition); border: 1px solid rgba(46,125,50,0.08); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: var(--font-heading); font-size: 80px; color: var(--yoga-green-pale); line-height: 1; }
.featured-testimonial { background: linear-gradient(135deg, var(--yoga-green), #388e3c); color: white; border: none; transform: scale(1.02); box-shadow: 0 16px 48px rgba(46,125,50,0.3); }
.featured-testimonial::before { color: rgba(255,255,255,0.15); }
.featured-testimonial .testimonial-text { color: rgba(255,255,255,0.9); }
.featured-testimonial .testimonial-stars { color: var(--yoga-gold) !important; }
.featured-testimonial strong { color: white; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.featured-testimonial:hover { transform: scale(1.02) translateY(-4px); }
.testimonial-stars { color: var(--yoga-gold); font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--yoga-muted); font-size: 15px; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--yoga-dark); }
.testimonial-author span { font-size: 13px; color: var(--yoga-muted); }

/* ===== BLOG ===== */
.blog-section,.blog-grid-section { background: var(--yoga-bg-light); }
.blog-featured-section { background: var(--yoga-white); }
.blog-card { background: var(--yoga-white); border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); height: 100%; display: flex; flex-direction: column; border: 1px solid rgba(46,125,50,0.08); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.08); }
.blog-category-badge { position: absolute; top: 16px; left: 16px; background: var(--yoga-green); color: white; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 16px; color: var(--yoga-muted); font-size: 13px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-title { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--yoga-dark); margin-bottom: 12px; line-height: 1.4; }
.blog-card-summary { color: var(--yoga-muted); font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.blog-author { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--yoga-muted); }
.author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--yoga-green); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.blog-read-more { color: var(--yoga-green); font-size: 13px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-read-more:hover { color: var(--yoga-gold); gap: 10px; }
.blog-featured-slide { background: var(--yoga-white); border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-card); min-height: 360px; }
.blog-featured-img-wrap { position: relative; height: 100%; min-height: 360px; }
.blog-featured-img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.blog-category-featured { top: 20px; left: 20px; font-size: 12px; }
.blog-featured-content { padding: 40px; }
.blog-featured-title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--yoga-dark); margin-bottom: 16px; line-height: 1.35; }
.blog-featured-summary { color: var(--yoga-muted); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tag { background: var(--yoga-green-pale); color: var(--yoga-green); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* ===== INSTAGRAM ===== */
.instagram-section { background: var(--yoga-white); }
.instagram-handle-link { color: #e1306c; text-decoration: none; font-weight: 600; font-size: 18px; }
.instagram-handle-link:hover { color: #bc1888; }
.insta-card-link { text-decoration: none; display: block; }
.insta-card { background: var(--yoga-white); border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); border: 1px solid rgba(0,0,0,0.08); }
.insta-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(188,24,136,0.15); }
.insta-card-header { display: flex; align-items: center; padding: 14px 16px; gap: 10px; border-bottom: 1px solid #f0f0f0; }
.insta-profile-pic { width: 38px; height: 38px; border-radius: 50%; background: var(--instagram-gradient); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.insta-profile-info { flex: 1; }
.insta-profile-info strong { display: block; font-size: 13px; color: var(--yoga-dark); }
.insta-profile-info span { font-size: 11px; color: var(--yoga-muted); }
.insta-logo { font-size: 22px; background: var(--instagram-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.insta-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.insta-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-card:hover .insta-img { transform: scale(1.05); }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: white; font-size: 14px; font-weight: 600; opacity: 0; transition: var(--transition); }
.insta-overlay i { font-size: 36px; }
.insta-card:hover .insta-overlay { opacity: 1; }
.insta-card-body { padding: 14px 16px; }
.insta-caption { font-size: 13px; color: var(--yoga-text); line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.btn-instagram { background: var(--instagram-gradient); color: white; font-weight: 700; padding: 14px 36px; border-radius: 50px; border: none; font-size: 15px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-instagram:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(188,24,136,0.4); }

/* ===== SWIPER ===== */
.swiper { padding-bottom: 50px !important; padding-left: 4px !important; padding-right: 4px !important; }
.swiper-button-next,.swiper-button-prev { color: var(--yoga-green) !important; background: white; width: 44px !important; height: 44px !important; border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,0.12); transition: var(--transition); }
.swiper-button-next::after,.swiper-button-prev::after { font-size: 16px !important; font-weight: 900; }
.swiper-button-next:hover,.swiper-button-prev:hover { background: var(--yoga-green); color: white !important; }
.swiper-pagination-bullet { background: var(--yoga-green-light) !important; }
.swiper-pagination-bullet-active { background: var(--yoga-green) !important; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-box { background: linear-gradient(135deg, var(--yoga-green), #1b5e20); border-radius: 24px; padding: 60px 50px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-title { font-family: var(--font-heading); font-size: clamp(22px,3vw,36px); font-weight: 700; color: white; margin-bottom: 12px; }
.cta-subtitle { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; }
.btn-cta-white { background: white; color: var(--yoga-green); font-weight: 700; padding: 14px 28px; border-radius: 50px; border: none; font-size: 15px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-cta-white:hover { background: var(--yoga-gold); color: var(--yoga-dark); transform: translateY(-2px); }
.btn-cta-whatsapp { background: #25d366; color: white; font-weight: 700; padding: 14px 28px; border-radius: 50px; border: none; font-size: 15px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-cta-whatsapp:hover { background: #128c7e; color: white; transform: translateY(-2px); }

/* ===== BUTTONS ===== */
.btn-yoga-primary { background: linear-gradient(135deg, var(--yoga-green), var(--yoga-green-light)); color: white; font-weight: 700; padding: 13px 30px; border-radius: 50px; border: none; font-size: 15px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-yoga-primary:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.4); }
.btn-yoga-outline { background: transparent; color: var(--yoga-green); font-weight: 600; padding: 12px 28px; border-radius: 50px; border: 2px solid var(--yoga-green); font-size: 15px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-yoga-outline:hover { background: var(--yoga-green); color: white; transform: translateY(-2px); }
.btn-yoga-outline-instagram { background: transparent; color: #e1306c; font-weight: 600; padding: 12px 28px; border-radius: 50px; border: 2px solid #e1306c; font-size: 15px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-yoga-outline-instagram:hover { background: var(--instagram-gradient); color: white; border-color: transparent; transform: translateY(-2px); }

/* ===== BATCH CARDS ===== */
.batch-card { background: var(--yoga-white); border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); height: 100%; display: flex; flex-direction: column; border: 1px solid rgba(46,125,50,0.1); position: relative; }
.batch-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.batch-card-popular { border: 2px solid var(--yoga-gold); }
.batch-popular-ribbon { position: absolute; top: 16px; right: 0; background: var(--yoga-gold); color: var(--yoga-dark); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 4px 0 0 4px; letter-spacing: 0.5px; z-index: 2; }
.batch-card-header { display: flex; align-items: center; gap: 16px; padding: 24px 24px 16px; background: linear-gradient(135deg, var(--yoga-green-pale), #f1f8e9); border-bottom: 1px solid rgba(46,125,50,0.1); }
.batch-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--yoga-green); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; flex-shrink: 0; }
.batch-name { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--yoga-dark); margin: 0 0 6px; }
.batch-level-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.batch-card-body { padding: 20px 24px; flex: 1; }
.batch-schedule { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.batch-schedule-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--yoga-text); }
.batch-description { color: var(--yoga-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.batch-progress { height: 6px; border-radius: 3px; margin-bottom: 4px; }
.batch-card-footer { padding: 16px 24px; border-top: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; background: #fafafa; }
.batch-price { display: flex; align-items: baseline; gap: 2px; }
.price-amount { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--yoga-green); }
.price-period { font-size: 13px; color: var(--yoga-muted); font-weight: 500; }
.btn-book-slot { background: linear-gradient(135deg, var(--yoga-green), var(--yoga-green-light)); color: white; font-weight: 700; padding: 10px 22px; border-radius: 30px; border: none; font-size: 14px; transition: var(--transition); white-space: nowrap; }
.btn-book-slot:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); color: white; }
.btn-batch-full { background: #f0f0f0; color: #999; font-weight: 600; padding: 10px 22px; border-radius: 30px; border: none; font-size: 14px; cursor: not-allowed; }

/* ===== INCLUDED SECTION ===== */
.included-section { background: var(--yoga-green-pale); border-radius: 20px; padding: 40px; }
.included-item { display: flex; flex-direction: column; align-items: center; gap: 10px; background: white; border-radius: 14px; padding: 24px 16px; text-align: center; box-shadow: 0 2px 12px rgba(46,125,50,0.08); transition: var(--transition); }
.included-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46,125,50,0.15); }
.included-item i { font-size: 28px; color: var(--yoga-green); }
.included-item span { font-weight: 600; font-size: 14px; color: var(--yoga-dark); }

/* ===== BOOKING MODAL ===== */
.booking-modal-content { border-radius: 20px; border: none; overflow: hidden; }
.booking-modal-header { background: linear-gradient(135deg, var(--yoga-green), #388e3c); color: white; padding: 24px 28px; border: none; }
.booking-modal-header .modal-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: white; }
.modal-subtitle { color: rgba(255,255,255,0.75); font-size: 14px; }
.input-group-yoga { position: relative; }
.input-group-yoga i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--yoga-green); z-index: 5; font-size: 15px; }
.yoga-input { padding-left: 40px; border-radius: 10px !important; border: 2px solid #e0e0e0; font-size: 15px; padding-top: 12px; padding-bottom: 12px; transition: var(--transition); }
.yoga-input:focus { border-color: var(--yoga-green); box-shadow: 0 0 0 3px rgba(46,125,50,0.1); }
.selected-batch-pill { background: linear-gradient(135deg, var(--yoga-green-pale), #f1f8e9); border: 1px solid rgba(46,125,50,0.2); border-radius: 12px; padding: 12px 18px; color: var(--yoga-green); font-weight: 600; font-size: 15px; }
.booking-summary-box { background: var(--yoga-bg-light); border-radius: 12px; padding: 20px; border: 1px solid rgba(46,125,50,0.12); }
.booking-summary-box h6 { font-weight: 700; color: var(--yoga-dark); margin-bottom: 14px; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.booking-summary-box .d-flex { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; }
.booking-summary-box .d-flex:last-child { border-bottom: none; }
.booking-summary-box span { color: var(--yoga-muted); }
.booking-summary-total span,.booking-summary-total strong { font-size: 16px; }
.btn-confirm-booking { background: linear-gradient(135deg, var(--yoga-green), var(--yoga-green-light)); color: white; font-weight: 700; padding: 16px; border-radius: 14px; border: none; font-size: 17px; transition: var(--transition); letter-spacing: 0.5px; }
.btn-confirm-booking:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,50,0.4); color: white; }
.booking-success-msg { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 64px; margin-bottom: 16px; }
.booking-success-msg h4 { color: var(--yoga-green); font-family: var(--font-heading); margin-bottom: 12px; }
.booking-success-msg p { color: var(--yoga-muted); }
.booking-error-msg { background: #fce4ec; border: 1px solid #ef9a9a; border-radius: 10px; padding: 16px 20px; color: #c62828; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; min-height: 340px; background: linear-gradient(135deg, #0d1f10, #1a3a1e, #2e5c2e); display: flex; align-items: center; overflow: hidden; padding-top: 80px; }
.page-hero-overlay { position: absolute; inset: 0; opacity: 0.5; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234caf50' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-content { position: relative; z-index: 2; padding: 60px 0; width: 100%; }
.page-hero-title { font-family: var(--font-heading); font-size: clamp(30px,5vw,52px); font-weight: 700; color: white; margin-bottom: 16px; }
.page-hero-subtitle { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===== FOOTER ===== */
.yoga-footer { background: #1a3a1e; position: relative; }
.footer-wave { line-height: 0; transform: scaleY(-1); }
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-body { padding: 60px 0 40px; }
.footer-logo { font-family: var(--font-heading); font-size: 26px; color: white; margin-bottom: 14px; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; max-width: 280px; }
.social-icon-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; transition: var(--transition); }
.instagram-btn { background: var(--instagram-gradient); color: white; }
.instagram-btn:hover { color: white; transform: scale(1.1); }
.whatsapp-btn-icon { background: #25d366; color: white; }
.whatsapp-btn-icon:hover { color: white; transform: scale(1.1); }
.footer-heading { color: white; font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; color: var(--yoga-gold); font-size: 12px; transition: var(--transition); }
.footer-links a:hover { color: var(--yoga-gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-contact-item:hover { color: var(--yoga-gold); }
.footer-contact-item i { font-size: 18px; width: 20px; text-align: center; }
.btn-whatsapp-footer { background: #25d366; color: white; font-weight: 700; padding: 10px 24px; border-radius: 30px; border: none; font-size: 14px; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; }
.btn-whatsapp-footer:hover { background: #128c7e; color: white; transform: translateY(-2px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 6px 0; }
.footer-quote { font-style: italic; color: rgba(249,168,37,0.7) !important; }

/* ===== NEWSLETTER ===== */
.newsletter-box { background: linear-gradient(135deg, var(--yoga-gold-pale), #fff8e1); border: 1px solid rgba(249,168,37,0.2); border-radius: 20px; padding: 50px; }
.newsletter-title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--yoga-dark); margin-bottom: 8px; }
.newsletter-subtitle { color: var(--yoga-muted); font-size: 15px; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .cta-box { padding: 36px 24px; }
  .newsletter-box { padding: 30px 24px; }
  .newsletter-form { flex-direction: column; }
  .trainer-image-wrap { max-width: 320px; margin: 0 auto; }
  .trainer-img-bg { display: none; }
  .trainer-experience-pill { top: 10px; right: 10px; }
  .batch-card-footer { flex-direction: column; gap: 12px; text-align: center; }
  .btn-book-slot { width: 100%; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
  .instagram-float { bottom: 82px; right: 20px; width: 44px; height: 44px; font-size: 18px; }
  .blog-featured-img-wrap,.blog-featured-img { min-height: 220px; }
  .blog-featured-content { padding: 24px; }
  .hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-cta-group .ms-3 { margin-left: 0 !important; }
}
@media (max-width: 576px) {
  .section-title { font-size: 24px; }
  .included-section { padding: 24px 16px; }
}
.fw-600 { font-weight: 600; }
