/* ===================================================
   ABHILASHA KABRA — GLOBAL STYLESHEET
   You Complete You · Emotional Wellness Coach
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --forest:       #1A3A2F;
  --forest-mid:   #254D3D;
  --forest-light: #2F6150;
  --gold:         #C9A84C;
  --gold-light:   #E8D08A;
  --gold-pale:    #F5EDD0;
  --ivory:        #FAF7F2;
  --ivory-dark:   #EEE8DC;
  --charcoal:     #2C2C2C;
  --muted:        #6B7280;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   .22s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

.who-pill
{
    color:#333;
}

/* ── UTILITY CLASSES ── */
.text-gold   { color: var(--gold); }
.text-forest { color: var(--forest); }
.text-muted-custom { color: var(--muted); }
.bg-forest   { background: var(--forest); }
.bg-ivory    { background: var(--ivory); }
.bg-white-custom { background: var(--white); }

.section      { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.section-alt  { background: var(--white); }
.section-dark { background: var(--forest); color: var(--white); }
.section-gold-pale { background: var(--gold-pale); }

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: var(--gold-light); }
.section-gold-pale .section-eyebrow { color: var(--forest); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  color: var(--forest);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-gold-pale .section-title { color: var(--forest); }

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
}
.section-dark .section-lead { color: rgba(255,255,255,.72); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--forest);
  border: none;
  border-radius: 40px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-forest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-forest:hover {
  background: var(--forest-mid);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 40px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-forest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  border-radius: 40px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-forest:hover {
  background: var(--forest);
  color: var(--gold);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-wa:hover { background: #1da851; color: var(--white); transform: translateY(-2px); }

/* ── NAVBAR ── */
.site-navbar {
  background: var(--forest);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,.22);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .3px;
}
.nav-brand-tagline {
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .855rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,.06);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  background: var(--forest-mid);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── ADVICE BAR ── */
.advice-bar {
  background: var(--gold);
  padding: 10px 0;
  text-align: center;
}
.advice-bar a {
  color: var(--forest);
  font-weight: 700;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.advice-bar a:hover { text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--forest);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.page-hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 620px;
}
.page-hero-botanical {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  opacity: .06;
  pointer-events: none;
}

/* ── CARDS ── */
.card-base {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
  transition: all var(--transition);
  height: 100%;
}
.card-base:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.3);
}
.card-forest {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(201,168,76,.2);
  transition: all var(--transition);
  height: 100%;
}
.card-forest:hover {
  border-color: var(--gold);
  background: var(--forest-mid);
  transform: translateY(-4px);
}

/* ── DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.gold-divider.centered { margin: 16px auto 24px; }

/* ── QUOTE BLOCK ── */
.pullquote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--forest);
  line-height: 1.7;
  margin: 32px 0;
}

/* ── FORMS ── */
.form-label-custom {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { cursor: pointer; }

/* ── POPUP ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,25,20,.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 92%;
  overflow: hidden;
  position: relative;
  animation: popIn .3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.92) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-head {
  background: var(--forest);
  padding: 30px 36px;
  text-align: center;
}
.popup-head h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 6px; }
.popup-head p { color: rgba(255,255,255,.7); font-size: .88rem; margin: 0; }
.popup-body { padding: 28px 36px 32px; }
.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}
.popup-close:hover { color: var(--gold-light); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1500;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  text-decoration: none;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.12); color: var(--white); }
.wa-float-label {
  position: absolute;
  right: 64px;
  background: var(--charcoal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  padding: 64px 0 28px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-about {
  font-size: .88rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 320px;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 40px 0 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--forest); }

/* ── TESTIMONIAL CARDS ── */
.testi-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--ivory-dark);
  position: relative;
  height: 100%;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: 12px; left: 22px;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: 10px; }
.testi-text {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.testi-name { font-weight: 700; font-size: .88rem; color: var(--forest); }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--forest);
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
}

/* ── ICON BOX ── */
.icon-box {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-box-forest {
  background: rgba(255,255,255,.08);
  color: var(--gold);
}

/* ── BLOG / RESOURCES ── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-thumb {
  height: 200px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { font-size: .88rem; color: var(--muted); line-height: 1.7; flex: 1; }
.blog-card-footer {
  padding: 0 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--muted);
}
.blog-read-more {
  color: var(--forest);
  font-weight: 600;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 8px; color: var(--gold); }

/* ── ACCORDION ── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--ivory-dark);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--forest); }
.faq-question.open { color: var(--forest); }
.faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ── BREADCRUMB ── */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb-custom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: var(--gold-light); }

/* ── SCROLL REVEAL (JS-driven) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 64px 0; }
}
@media (max-width: 767px) {
  .section { padding: 52px 0; }
  .page-hero { padding: 52px 0 44px; }
  .popup-body { padding: 20px 20px 24px; }
  .popup-head { padding: 22px 20px; }
}
@media (max-width: 575px) {
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.3rem; }
}
