/* ============================
   INTERSECTION OBSERVER ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Apply to all headings and paragraphs */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6,
section p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section h1.visible,
section h2.visible,
section h3.visible,
section h4.visible,
section h5.visible,
section h6.visible,
section p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for multiple elements */
section h2 { transition-delay: 0.1s; }
section h3 { transition-delay: 0.15s; }
section h4 { transition-delay: 0.2s; }
section h5 { transition-delay: 0.25s; }
section h6 { transition-delay: 0.3s; }
section p { transition-delay: 0.05s; }

/* ============================
   SCROLL PROGRESS BAR
   ============================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--color-accent);
  z-index: 10000;
  transition: width 0.1s ease;
  transform-origin: left;
}

/* ============================
   PAGE LOAD PROGRESS
   ============================ */
.page-load-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  z-index: 10001;
  transition: width 0.3s ease-out, opacity 0.5s ease;
}

.page-load-progress.complete {
  width: 100%;
}

.page-load-progress.fade-out {
  opacity: 0;
}

/* ============================
   RESET & BASE
   ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* BURGUNDY ACCENT + WARM GOLD RINGS */
  --color-hero-bg: #e8e6e1;
  --color-dark-section: #3a3530;
  --color-soft-section: #f5f3ef;
  --color-text-dark: #2a2624;
  --color-text-light: #f8f6f2;
  --color-text-muted: #8b8985;
  --color-accent: #8b2f3c;
  --color-accent-hover: #6d2430;
  --color-border: #d4d0ca;
  --color-ring-gold: #c7a377;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 2rem;
  --container-max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  line-height: 1.7;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
}

p {
  text-align: justify;
}

/* ============================
   STATS STRIP
   ============================ */
.stats-strip {
  background: var(--color-soft-section);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .stats-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-divider {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
}

/* ============================
   NEWSLETTER POPUP
   ============================ */
.newsletter-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  z-index: 9999;
  display: none;
}

.newsletter-popup.show {
  display: block;
}

.popup-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s;
  line-height: 1;
}

.popup-close:hover {
  color: var(--color-text-dark);
}

.popup-content h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
  text-align: center;
}

.popup-content p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  text-align: center;
}

.popup-discount {
  background: var(--color-soft-section);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.popup-discount strong {
  color: var(--color-accent);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popup-form input {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.popup-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.popup-privacy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================
   NAVIGATION
   ============================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 3rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  margin-right: auto;
  padding-right: 3rem;
}

.nav-logo {
  height: 75px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta {
  background: var(--color-accent);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem !important;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 47, 60, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-text-dark);
  transition: all 0.3s;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 80vh;
  background: var(--color-hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-greeting {
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.hero-bio {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  max-width: 550px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.availability-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #888888;
  margin: 0;
  text-align: left;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  font-family: var(--font-body);
}

.hero-btn-primary {
  background: var(--color-accent);
  color: white;
}

.hero-btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139, 47, 60, 0.35);
}

.hero-btn:not(.hero-btn-primary) {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-accent);
}

.hero-btn:not(.hero-btn-primary):hover {
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* Hero Photo with GOLD/BRONZE Glowing Rings */
.hero-photo-wrap {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 3;
  border: 3px solid white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--color-ring-gold);
  filter: blur(1px);
}

.hero-ring-1 {
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  box-shadow: 
    0 0 20px rgba(199, 163, 119, 0.25),
    0 0 35px rgba(199, 163, 119, 0.15),
    inset 0 0 20px rgba(199, 163, 119, 0.12);
  animation: flowingGlow1 8s ease-in-out infinite;
  opacity: 0.6;
}

.hero-ring-2 {
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  box-shadow: 
    0 0 30px rgba(199, 163, 119, 0.2),
    0 0 45px rgba(199, 163, 119, 0.12),
    inset 0 0 25px rgba(199, 163, 119, 0.1);
  animation: flowingGlow2 10s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes flowingGlow1 {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.55;
    box-shadow: 
      0 0 20px rgba(199, 163, 119, 0.25),
      0 0 35px rgba(199, 163, 119, 0.15),
      inset 0 0 20px rgba(199, 163, 119, 0.12);
  }
  50% {
    transform: scale(1.04) rotate(180deg);
    opacity: 0.65;
    box-shadow: 
      0 0 28px rgba(199, 163, 119, 0.3),
      0 0 42px rgba(199, 163, 119, 0.18),
      inset 0 0 25px rgba(199, 163, 119, 0.15);
  }
}

@keyframes flowingGlow2 {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.45;
    box-shadow: 
      0 0 30px rgba(199, 163, 119, 0.2),
      0 0 45px rgba(199, 163, 119, 0.12),
      inset 0 0 25px rgba(199, 163, 119, 0.1);
  }
  50% {
    transform: scale(1.05) rotate(-180deg);
    opacity: 0.55;
    box-shadow: 
      0 0 38px rgba(199, 163, 119, 0.25),
      0 0 52px rgba(199, 163, 119, 0.15),
      inset 0 0 30px rgba(199, 163, 119, 0.12);
  }
}

/* ============================
   IDENTITY STRIP
   ============================ */
.identity-strip {
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
}

.strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.identity-item span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.identity-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: var(--section-padding);
}

.soft-section {
  background: var(--color-soft-section);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-align: left;
  display: inline-block;
}

.section h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: left;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

/* ============================
   CREDENTIALS SECTION
   ============================ */
.credentials {
  background: white;
}

.credentials-ticker {
  overflow: hidden;
  margin-top: 3rem;
  white-space: nowrap;
}

.credentials-track {
  display: flex;
  animation: scrollCredentials 30s linear infinite;
  width: fit-content;
}

@keyframes scrollCredentials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.credential-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.3s;
}

.credential-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.credential-item i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.credential-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
  text-align: center;
}

.credential-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* ============================
   COMPANY LOGOS
   ============================ */
.company-logos {
  background: white;
  padding: 3rem 2rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.logos-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.logo-divider {
  font-family: var(--font-display);
  color: var(--color-text-muted);
  opacity: 0.4;
  font-size: 1.2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logos-row {
    gap: 0.5rem;
  }
  
  .logo-item {
    font-size: 0.8rem;
  }
  
  .logo-divider {
    font-size: 1rem;
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: white;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-photo-monochrome {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.about-photo-monochrome:hover {
  filter: grayscale(0%);
}

/* ============================
   THERAPY & COACHING SECTIONS
   ============================ */
.therapy, .coaching, .speaking {
  background: var(--color-soft-section);
  color: var(--color-text-dark);
}

.therapy h2, .coaching h2, .speaking h2 {
  color: var(--color-text-dark);
}

.therapy .section-desc, .coaching .section-desc {
  color: var(--color-text-muted);
}

.therapy-location {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin: 1rem 0 1.5rem 0;
  text-align: left;
}

.newsletter-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.newsletter-badge.dark {
  background: var(--color-accent);
}

.sliding-scale-note {
  color: rgba(248, 246, 242, 0.7);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  text-align: left;
}

.sliding-scale-note.dark {
  color: rgba(248, 246, 242, 0.7);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card.featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.card.featured h3,
.card.featured p {
  color: white;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  text-align: left;
}

.card p {
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}

.card .price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1.5rem 0 0.5rem;
  text-align: left;
}

.card .discount-price {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Therapy section buttons - use burgundy background with white text */
.therapy .btn-outline {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.therapy .btn-outline:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: white;
}

.therapy .btn-primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.therapy .btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials {
  background: white;
  padding: 6rem 2rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 2rem;
  min-height: 200px;
}

.testimonial-card {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  background: var(--color-soft-section);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  text-align: right;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 30px;
  border-radius: 5px;
}

/* ============================
   SPEAKING SECTION
   ============================ */
.speaking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.speaking-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.speaking-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.speaking-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  text-align: left;
}

.speaking-item p {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.speaking-item .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-accent);
  text-align: left;
}

/* Speaking section button - use burgundy background with white text */
.speaking .btn-primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.speaking .btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* ============================
   EVENTS SECTION
   ============================ */
.events {
  background: white;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--color-soft-section);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.event-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.event-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-align: left;
}

.event-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
  text-align: left;
}

.event-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.event-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================
   STATS
   ============================ */
.stats {
  background: #f5f5f0;
  padding: 80px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}

.stats-item {
  text-align: center;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 0.9rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-divider {
  width: 1px;
  height: 40px;
  background: #d4d0ca;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .stats {
    padding: 60px 0;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stats-divider {
    width: 40px;
    height: 1px;
  }
  
  .stats-number {
    font-size: 2rem;
  }
}

/* ============================
   CREDENTIALS MARQUEE
   ============================ */
.credentials-marquee {
  background: #e8e6e1;
  height: 44px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  height: 100%;
  animation: scroll-marquee 30s linear infinite;
  padding-right: 50px;
}

.marquee-content:nth-child(2) {
  animation: scroll-marquee 30s linear infinite;
  animation-delay: 0s;
}

.ticker-item {
  color: #2a2624;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-separator {
  color: var(--color-accent);
  margin: 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================
   BOOKS, FOR YOU, AI DOST
   ============================ */
.books {
  background: #111111;
  color: #ffffff;
}

.books-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.books-header {
  text-align: center;
  margin-bottom: 4rem;
}

.books-header .section-label {
  color: #888888;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.books-header h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.books-header .section-desc {
  color: #cccccc;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.book-showcase {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.book-visual {
  display: flex;
  justify-content: flex-start;
}

.book-cover {
  position: relative;
  width: 380px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.book-content {
  padding: 2rem;
}

.book-content h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.book-hook {
  color: #ffffff;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.book-description {
  color: #aaaaaa;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.book-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #cccccc;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.8rem;
}

.book-pricing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
}

.shipping {
  color: #888888;
  font-size: 0.9rem;
}

.payment-note {
  color: #888888;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: left;
  line-height: 1.4;
}

.book-pricing .btn-primary {
  width: auto;
  display: inline-block;
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: auto;
  margin-top: 1rem;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--color-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: auto;
  margin-top: 1rem;
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 47, 60, 0.3);
}

.session-details {
  color: #888888;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  text-align: left;
  line-height: 1.4;
}

.books-coming {
  margin-top: 3rem;
}

.book-placeholder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.book-cover {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid var(--color-border);
}

.book-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.book-cover:hover .book-cover-image {
  transform: scale(1.02);
}


.book-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.book-info p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.book-status {
  font-style: italic;
  color: var(--color-accent);
  text-align: left;
}

.for-you-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.foryou-section {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all 0.3s;
}

.foryou-section:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.foryou-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.foryou-section p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.blog-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.2s ease;
  text-align: left;
}

.blog-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.aidost-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mockup {
  width: 100%;
  max-width: 350px;
}

.mockup-screen {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid #2a2624;
}

.mockup-header {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.mockup-chat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble {
  padding: 0.875rem 1.25rem;
  border-radius: 18px;
  max-width: 85%;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.chat-bubble.ai {
  background: var(--color-soft-section);
  color: var(--color-text-dark);
  align-self: flex-start;
}

.chat-bubble.user {
  background: var(--color-accent);
  color: white;
  align-self: flex-end;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact {
  background: white;
}

.contact-inner {
  text-align: center;
}

.contact-inner h2 {
  text-align: center;
}

.contact-inner .section-label {
  text-align: center;
}

.contact-inner .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.start-here-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 47, 60, 0.2);
}

.start-here-banner h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.start-here-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

.btn-large {
  font-size: 1.2rem !important;
  padding: 1.25rem 3rem !important;
  background: white !important;
  color: var(--color-accent) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-large:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.contact-card-modern {
  background: var(--color-soft-section);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.contact-card-modern:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-card-modern i {
  font-size: 2rem;
  color: var(--color-accent);
}

.contact-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  font-weight: 500;
  text-align: center;
}

/* ============================
   EMERGENCY DISCLAIMER
   ============================ */
.emergency-disclaimer {
  background: #fff3cd;
  border-top: 2px solid #ffc107;
  border-bottom: 2px solid #ffc107;
  padding: 1rem 2rem;
  overflow: hidden;
}

.disclaimer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
  color: #856404;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.disclaimer-content i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ============================
   WHATSAPP FLOATING BUTTON
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9997;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  background: #128C7E;
}

.whatsapp-float:active {
  transform: translateY(0);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 70px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================
   NEWSLETTER POPUP
   ============================ */
.newsletter-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.newsletter-popup.active {
  display: flex;
}

.newsletter-popup-content {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.newsletter-popup-close:hover {
  background: #f5f5f5;
  color: #333;
}

.newsletter-popup h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.newsletter-popup p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.newsletter-submit {
  background: var(--color-accent);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #6d2430;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 47, 60, 0.3);
}

/* Clickable newsletter banner */
.newsletter-banner {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e6e1 100%);
  border: 2px dashed var(--color-accent);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter-banner:hover {
  background: linear-gradient(135deg, #e8e6e1 0%, #d4d0ca 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-banner span {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.newsletter-banner i {
  color: var(--color-accent);
}

/* ============================
   MOBILE STICKY BOTTOM BAR
   ============================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-accent);
  color: white;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  z-index: 9998;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-sticky-bar:hover {
  background: #8b2f3c;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* ============================
   BACK TO TOP BUTTON
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: #2a2624;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #3a3530;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 70px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #111111;
  padding: 3rem 2rem 2rem;
  color: white;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem;
  }
  
  .footer-nav {
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-social {
    gap: 0.75rem;
  }
}

/* ============================
   UNIVERSAL BUTTON HOVER EFFECTS
   ============================ */
.btn-primary,
.btn-outline,
.hero-btn,
.nav-cta,
.contact-card-modern,
.social-icon,
.whatsapp-float,
.back-to-top,
.mobile-sticky-bar,
button[type="submit"],
input[type="submit"] {
  transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-outline:hover,
.hero-btn:hover,
.nav-cta:hover,
.contact-card-modern:hover,
.social-icon:hover,
.whatsapp-float:hover,
.back-to-top:hover,
.mobile-sticky-bar:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139, 47, 60, 0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent);
  padding: 1rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 47, 60, 0.3);
}

/* ============================
   RESPONSIVE - MOBILE FIRST
   ============================ */
@media (max-width: 768px) {
  /* Sections */
  .section {
    padding: 60px 1.5rem;
  }
  
  /* Navigation */
  .nav-inner {
    padding: 1rem 1.5rem;
  }

  .nav-logo-link {
    padding-right: 0;
  }

  .nav-logo {
    height: 60px;
  }
  
  .nav-links {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 82px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: left 0.3s;
    border-top: 1px solid var(--color-border);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Hero Section - PERFECT MOBILE ORDER */
  .hero {
    padding: 6rem 1.5rem 3rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-left {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-right {
    order: 2;
    margin-bottom: 2rem;
  }
  
  .hero-greeting {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .hero-bio {
    font-size: 1.05rem;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    order: 3;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
  }
  
  .hero-photo-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
  }
  
  /* Two Column Layouts */
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .credentials-track {
    animation: scrollCredentials 20s linear infinite;
  }
  
  .credential-item {
    min-width: 280px;
    padding: 1.5rem;
  }
  
  .book-placeholder {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .book-cover {
    height: 350px;
  }
  
  /* Premium Book Section */
  .books-container {
    padding: 4rem 1.5rem;
  }
  
  .books-header h2 {
    font-size: 2.5rem;
  }
  
  .books-header .section-desc {
    font-size: 1rem;
  }
  
  .book-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .book-visual {
    justify-content: center;
  }
  
  .book-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .book-cover {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .book-content {
    text-align: center;
    padding: 1.5rem;
  }
  
  .book-content h3 {
    font-size: 2rem;
  }
  
  .book-features {
    margin-bottom: 2rem;
  }
  
  .feature-item {
    justify-content: center;
    text-align: left;
  }
  
  .book-pricing {
    align-items: center;
  }
  
  .btn-premium {
    width: 100%;
    justify-content: center;
  }
  
  /* Typography */
  .section h2 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }

  /* Identity Strip */
  .identity-strip {
    padding: 1.25rem 1rem;
  }

  .strip-inner {
    gap: 1rem;
  }

  .identity-item span {
    font-size: 0.85rem;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .start-here-banner {
    padding: 2.5rem 1.5rem;
  }

  .start-here-banner h3 {
    font-size: 1.6rem;
  }

  .btn-large {
    font-size: 1.1rem !important;
    padding: 1.1rem 2.5rem !important;
  }

  /* Ensure all sections stack vertically */
  .hero-inner {
    grid-template-columns: 1fr !important;
  }

  .for-you-sections {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .events-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .testimonials-carousel {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Ensure text is centered on mobile */
  .section h2,
  .section p {
    text-align: center !important;
  }

  .section-label {
    text-align: center !important;
  }
}

/* ============================
   BLOG CONTENT STYLES (MAGAZINE LAYOUT)
   ============================ */
.blog-content {
  background: var(--color-soft-section);
  padding: 4rem 2rem;
}

.blog-featured-post {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e0d8;
}

.featured-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.featured-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.featured-post-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.featured-post-excerpt {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.featured-post-read-more {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.featured-post-read-more:hover {
  color: var(--color-accent-hover);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-grid-post {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #e8e0d8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-grid-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.grid-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.grid-post-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.grid-post-date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.grid-post-excerpt {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid-post-read-more {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.grid-post-read-more:hover {
  color: var(--color-accent-hover);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-featured-post {
    padding: 2rem;
  }
  
  .featured-post-title {
    font-size: 1.8rem;
  }
  
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-grid-post {
    padding: 1.5rem;
  }
}

/* Blog Post CTA Section */
.blog-cta {
  background: var(--color-soft-section);
  padding: 4rem 2rem;
  margin-top: 3rem;
  border-radius: 12px;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-outline:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-cta {
    padding: 3rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================
   BLOG PAGE STYLES
   ============================ */

.blog-hero {
  background: var(--color-hero-bg);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.blog-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-title {
  font-size: 3.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  text-align: center;
}

.blog-posts {
  padding: 4rem 2rem;
  background: #fff;
}

.blog-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.blog-post-card {
  background: white;
  border: 1px solid #e8e0d8;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-post-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.blog-post-title a {
  color: #2a2624;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--color-accent);
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-post-date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.blog-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.blog-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.blog-empty-state p {
  font-size: 1.1rem;
  margin: 0;
}

.blog-post-excerpt {
  color: var(--color-text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  text-align: left;
}

.blog-post-read-more {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.blog-post-read-more:hover {
  color: var(--color-accent-hover);
}

.loading,
.no-posts,
.error {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-title {
    font-size: 2.5rem;
  }
  
  .blog-posts {
    padding: 3rem 1.5rem;
  }
  
  .blog-post-card {
    padding: 1.5rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================
   INDIVIDUAL BLOG POST STYLES
   ============================ */

.blog-post {
  padding: var(--section-padding);
  background: #fff;
  min-height: calc(100vh - 200px);
}

.blog-post-inner {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 3rem;
  text-align: center;
}

.blog-post .blog-post-title {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.blog-post .blog-post-meta {
  justify-content: center;
  margin-bottom: 0;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content p:last-child {
  margin-bottom: 0;
}

.blog-post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.blog-post-navigation {
  text-align: center;
}

.back-to-blog {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-to-blog:hover {
  color: var(--color-accent-hover);
}

/* Mobile Responsive for Individual Post */
@media (max-width: 768px) {
  .blog-post {
    padding: 4rem 1.5rem;
  }
  
  .blog-post .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-content {
    font-size: 1rem;
  }
  
  .blog-post-header {
    margin-bottom: 2rem;
  }
}
