/* ================================================================
   MYSTIC POONAM — Shared Design System
   krish.co.in | Poonam Sharma
   ================================================================ */

/* ===== GOOGLE FONTS (loaded via <link> in HTML) =====
   Cormorant Garamond: 400,500,600,700 + italic
   Outfit: 300,400,500,600
   ===================================================== */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --gold-glow: rgba(201,168,76,0.12);
  --deep-plum: #2A1B3D;
  --plum-mid: #3D2756;
  --warm-cream: #FDF6EC;
  --sage: #7A9E7E;
  --sage-light: #E8F0E9;
  --soft-rose: #D4A59A;
  --text-light: #F5EDE0;
  --text-muted-dark: #B8A9C9;
  --text-dark: #2D2D2D;
  --text-muted: #777;
  --white: #FFFFFF;
  --bg-light: #FAF8F5;
  --border-light: #EBE7E0;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.3;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--deep-plum); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--deep-plum);
  border-radius: 1px;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;
  min-width: 200px;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
}
.nav-dropdown-menu li {
  list-style: none;
}
.nav-dropdown-menu li:first-child a { border-radius: 10px 10px 0 0; }
.nav-dropdown-menu li:last-child a { border-radius: 0 0 10px 10px; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-dark);
  white-space: nowrap;
  background: var(--white);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.nav-dropdown-menu li:first-child a {
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
}
.nav-dropdown-menu li:last-child a {
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.nav-dropdown-menu a:hover {
  background: var(--warm-cream);
  color: var(--deep-plum);
}

/* CTA in nav */
.nav-cta {
  padding: 0.5rem 1.4rem;
  background: var(--deep-plum);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.nav-cta:hover {
  color: var(--white) !important;
  background: var(--plum-mid);
  box-shadow: 0 4px 16px rgba(42,27,61,0.2);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-plum);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO (GENERIC) ===== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 5rem 2rem;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(122,158,126,0.05) 0%, transparent 50%),
    linear-gradient(175deg, #1E1230 0%, var(--deep-plum) 35%, #2A1B3D 100%);
  color: var(--text-light);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 25%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 50% 55%, rgba(255,255,255,0.18), transparent),
    radial-gradient(1px 1px at 82% 35%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1.5px 1.5px at 35% 80%, rgba(201,168,76,0.35), transparent),
    radial-gradient(1px 1px at 68% 12%, rgba(201,168,76,0.25), transparent);
  pointer-events: none;
  animation: twinkle 7s ease-in-out infinite alternate;
}
@keyframes twinkle { 0% { opacity: 0.5; } 100% { opacity: 1; } }

.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-portrait {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(201,168,76,0.35);
  box-shadow: 0 0 30px rgba(201,168,76,0.15), 0 0 60px rgba(42,27,61,0.3);
  margin: 0 auto 1.5rem;
}
.hero-eyebrow {
  font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.15; color: var(--white); margin-bottom: 0.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500; font-style: italic;
  color: var(--gold-light); margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero p.taglines {
  font-size: 1.05rem; color: var(--text-muted-dark);
  max-width: 520px; margin: 0 auto 2rem;
}
.hero p.taglines strong { color: var(--text-light); font-weight: 500; }

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-block; padding: 1rem 2.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, #B8922E 100%);
  color: var(--deep-plum);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.06em;
  text-decoration: none; border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
  border: none; cursor: pointer;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  color: var(--deep-plum);
}
.cta-btn-outline {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none; border-radius: 50px;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}
.cta-btn-outline:hover {
  background: var(--gold);
  color: var(--deep-plum);
}
.cta-label {
  display: block; font-size: 0.75rem; color: var(--text-muted-dark);
  margin-top: 0.8rem;
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--border-light);
}
.proof-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.proof-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-plum);
  line-height: 1.2;
}

/* ===== SECTIONS ===== */
.light-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2rem;
}
.dark-section {
  background: var(--deep-plum);
  color: var(--text-light);
  padding: 5rem 2rem;
}
.cream-section {
  background: var(--warm-cream);
  color: var(--text-dark);
  padding: 5rem 2rem;
}

.container { max-width: 1000px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-label {
  font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.3; margin-bottom: 1.5rem;
}
.dark-section .section-title { color: var(--white); }
.light-section .section-title,
.cream-section .section-title { color: var(--deep-plum); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.dark-section .section-intro { color: var(--text-muted-dark); }

/* ===== LISTS ===== */
.check-list {
  list-style: none; margin: 1.5rem 0; padding: 0;
}
.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  font-size: 1rem;
}
.check-list li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--sage); font-weight: 700; font-size: 1.1rem;
}
.dark-section .check-list li::before { color: var(--gold); }
.dark-section .check-list li { color: var(--text-light); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(42,27,61,0.08);
}
.card h3 {
  font-size: 1.3rem;
  color: var(--deep-plum);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,27,61,0.1);
  border-color: var(--gold);
  color: inherit;
}
.service-card .service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.testimonial-card {
  padding: 1.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.15em;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}
/* Light bg testimonials */
.light-section .testimonial-card {
  background: var(--white);
  border-color: var(--border-light);
}
.light-section .testimonial-card blockquote { color: var(--text-dark); }
.light-section .testimonial-card cite { color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.2rem 0;
}
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--deep-plum); cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--gold);
  transition: transform 0.2s; flex-shrink: 0; margin-left: 12px;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  margin-top: 0.6rem; font-size: 0.92rem;
  color: var(--text-muted); max-width: 620px; line-height: 1.7;
}
.dark-section .faq-item { border-color: rgba(201,168,76,0.1); }
.dark-section .faq-item summary { color: var(--white); }
.dark-section .faq-item p { color: var(--text-muted-dark); }

/* ===== EMPHASIS BLOCK ===== */
.emphasis-block {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.04);
  border-radius: 0 10px 10px 0;
}
.emphasis-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  color: var(--deep-plum); line-height: 1.6;
  font-weight: 600;
}

/* ===== HIGHLIGHTED KEYWORDS ===== */
.hl { color: var(--gold); font-weight: 600; }
.hl-green { color: var(--sage); font-weight: 600; }
.dark-section .hl { color: var(--gold-light); }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1A1228;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 4rem 2rem 2rem;
  color: var(--text-muted-dark);
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  margin-bottom: 0.8rem;
}
.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(201,168,76,0.2); }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none; padding: 0;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.08);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 0.8rem 2rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--warm-cream);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 1.5rem;
    z-index: 999;
    border-top: 1px solid var(--border-light);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--text-dark); }
  .nav-toggle { display: block; }
  .nav-dropdown > a { position: relative; }
  .nav-dropdown > a::after {
    content: '▾';
    margin-left: 0.3rem;
    font-size: 0.7em;
    transition: transform 0.3s;
    display: inline-block;
  }
  .nav-dropdown.open > a::after { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(42,27,61,0.06);
    border: none;
    box-shadow: none;
    display: none;
    padding: 0.5rem 0;
    margin-top: 0.4rem;
    min-width: 0;
    text-align: center;
    border-radius: 8px;
  }
  .nav-dropdown-menu li { border: none !important; }
  .nav-dropdown-menu li a { font-size: 0.95rem !important; padding: 0.35rem 0; border: none !important; box-shadow: none !important; background: transparent !important; color: var(--text-muted) !important; }
  .nav-dropdown-menu li[style] { border-top: none !important; margin-top: 0 !important; padding-top: 0 !important; }
  .nav-dropdown-menu li.desktop-only { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  /* Sections */
  .light-section, .dark-section, .cream-section { padding: 3rem 1.2rem; }
  .hero { min-height: auto; padding: 3rem 1.2rem; }
  .hero-portrait { width: 110px; height: 110px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero p.taglines { font-size: 0.95rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .container, .container-narrow { padding: 0; }

  /* Proof bar */
  .proof-bar { gap: 1rem; padding: 1rem; }
  .proof-item { font-size: 0.75rem; }
  .proof-item strong { font-size: 1.3rem; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* CTA */
  .cta-btn { padding: 0.9rem 2rem; font-size: 0.85rem; }

  /* FAQ */
  .faq-item summary { font-size: 1rem; }
  .faq-item p { font-size: 0.85rem; }

  /* Emphasis */
  .emphasis-block { padding: 1.2rem 1.4rem; }
  .emphasis-block p { font-size: 1.05rem; }

  /* WhatsApp */
  .wa-float { bottom: 18px; right: 14px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ===== PRICING / COURSE CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,27,61,0.1);
  border-color: var(--gold);
}
.pricing-card .card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.4rem;
}
.pricing-card .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep-plum);
  margin-bottom: 0.3rem;
}
.pricing-card .price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card .card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pricing-card .card-meta span { margin-right: 1rem; }
.pricing-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.pricing-card .card-includes {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}
.pricing-card .card-includes li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}
.pricing-card .card-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ===== BUY / ENROL / WHATSAPP CTA BUTTONS ===== */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #25D366;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.cta-whatsapp:hover {
  background: #1EA952;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  color: #fff;
}
.cta-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.cta-btn-sm {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, #B8922E 100%);
  color: var(--deep-plum);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.cta-btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  color: var(--deep-plum);
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background:
    linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(42,27,61,0.06) 100%);
  border: 2px dashed var(--border-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-muted);
  font-size: 0.8rem;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '\1F5BC';
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}
.img-placeholder-round {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  min-height: unset;
}
.img-placeholder-round::before {
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* ===== EMBED CONTAINERS ===== */
.embed-section {
  margin: 2rem 0;
}
.embed-container {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.embed-container .embed-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.embed-container p {
  font-size: 0.9rem;
  max-width: 400px;
  line-height: 1.6;
}
.embed-container code {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.4rem 1rem;
  border-radius: 6px;
}
.dark-section .embed-container {
  background: rgba(255,255,255,0.03);
  border-color: rgba(201,168,76,0.1);
  color: var(--text-muted-dark);
}
.embed-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,27,61,0.1);
  border-color: var(--gold);
  color: inherit;
}
.blog-card .blog-thumb {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(42,27,61,0.08) 0%, rgba(201,168,76,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.4;
}
.blog-card .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card .blog-body {
  padding: 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.blog-card .read-more {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* ===== TEAM MEMBER CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  text-align: center;
}
.team-card .team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(201,168,76,0.2);
}
.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.2rem;
}
.team-card .team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.team-card .team-contact {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}

/* ===== CATEGORY FILTER TABS ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-tab {
  padding: 0.5rem 1.4rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-plum);
}

/* ===== TWO-COLUMN CONTENT LAYOUT ===== */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-2col.reversed { direction: rtl; }
.content-2col.reversed > * { direction: ltr; }
.content-2col-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 1rem;
}
.dark-section .content-2col-text h2 { color: var(--white); }
.content-2col-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.dark-section .content-2col-text p { color: var(--text-muted-dark); }

/* ===== SERVICE DETAIL LIST ===== */
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.service-detail-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.service-detail-list li::before {
  content: '\2022';
  position: absolute;
  left: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}
.dark-section .service-detail-list li { color: var(--text-muted-dark); }

/* ===== CREDENTIALS / BADGE LIST ===== */
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.credential-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--deep-plum);
  letter-spacing: 0.02em;
}

/* ===== ARTICLE BODY (BLOG POSTS) ===== */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin: 2rem 0 0.8rem;
}
.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

/* ===== START HERE / CATEGORY HUB ===== */
.category-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,27,61,0.1);
  border-color: var(--gold);
  color: inherit;
}
.category-card .cat-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.category-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.3rem;
}
.category-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE (NEW COMPONENTS) ===== */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .content-2col { grid-template-columns: 1fr; gap: 2rem; }
  .content-2col.reversed { direction: ltr; }
  .service-detail-list { grid-template-columns: 1fr; }
  .embed-row { grid-template-columns: 1fr; }
  .category-hub { grid-template-columns: 1fr 1fr; }
  .filter-tabs { gap: 0.4rem; }
  .filter-tab { padding: 0.4rem 1rem; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .proof-bar { gap: 0.6rem; padding: 0.8rem 0.6rem; }
  .proof-item strong { font-size: 1.1rem; }
  .proof-item { font-size: 0.7rem; }
  .hero { padding: 2.5rem 1rem; }
  .hero-portrait { width: 90px; height: 90px; }
  .cta-btn { padding: 0.85rem 1.6rem; font-size: 0.82rem; }
  .category-hub { grid-template-columns: 1fr; }
  .credentials-list { gap: 0.4rem; }
  .credential-badge { font-size: 0.72rem; padding: 0.35rem 0.8rem; }
}
