/* ============================================
   Holistic Journeys — Main Stylesheet
   Purple/Teal/White wellness palette
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --purple-deep: #5B2D8E;
  --purple: #6B3FA0;
  --purple-light: #9B72CF;
  --purple-pale: #EDE7F6;
  --teal: #2BBCB3;
  --teal-light: #5ED4CD;
  --teal-pale: #E0F7F5;
  --dark: #2D2D3F;
  --dark-soft: #4A4A5A;
  --white: #FFFFFF;
  --off-white: #F8F6FC;
  --gray-light: #E8E6EF;
  --gray: #9A97A9;
  --shadow-sm: 0 2px 8px rgba(91,45,142,0.08);
  --shadow-md: 0 4px 20px rgba(91,45,142,0.12);
  --shadow-lg: 0 8px 40px rgba(91,45,142,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal);
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
  margin-bottom: 1em;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-purple { color: var(--purple); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107,63,160,0.35);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-book {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 16px rgba(43,188,179,0.3);
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(43,188,179,0.4);
  color: var(--white);
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--purple-deep);
}

.nav-logo:hover {
  color: var(--purple-deep);
}

.nav-logo .lotus-icon {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-soft);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: var(--purple-pale);
}

.nav-book {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav-book {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple) 40%, var(--teal) 100%);
  color: var(--white);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-background.jpg') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(155,114,207,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(43,188,179,0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1rem;
  max-width: 800px;
}

.hero .lotus-hero {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero .hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0.95;
}

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

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(43,188,179,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}

.page-hero .page-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  position: relative;
}

.page-hero-img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: block;
  border: 4px solid var(--purple-pale);
}

.section-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin: 1rem 0 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.oxygen-gallery, .fox-gallery {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-purple {
  background: linear-gradient(135deg, var(--purple-pale), var(--teal-pale));
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0.5rem;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--dark-soft);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  border: none;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* --- Service Cards (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 1.75rem;
}

.service-card .lotus-card {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--dark-soft);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

/* --- Intro / Text Sections --- */
.intro-section {
  padding: 5rem 0;
}

.intro-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dark-soft);
}

.intro-content .highlight {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--purple-deep);
  display: block;
  margin-bottom: 1.5rem;
}

/* --- Pricing Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-header {
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-card-header.featured {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: var(--white);
  border-bottom-color: transparent;
}

.pricing-card-header.featured h3,
.pricing-card-header.featured p {
  color: var(--white);
}

.pricing-card-header h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pricing-card-header p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

.pricing-card-body {
  padding: 1.25rem 1.5rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item .duration {
  font-weight: 500;
  font-size: 0.95rem;
}

.pricing-item .price {
  font-weight: 700;
  color: var(--purple);
  font-size: 1rem;
}

.pricing-card-body .note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.75rem;
  font-style: italic;
}

/* --- Sauna Page Specific --- */
.sauna-section {
  padding: 3rem 0;
}

.sauna-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.sauna-feature:nth-child(even) {
  direction: rtl;
}

.sauna-feature:nth-child(even) > * {
  direction: ltr;
}

.sauna-feature-text h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.sauna-feature-text p {
  color: var(--dark-soft);
  line-height: 1.8;
}

.sauna-feature-visual {
  background: linear-gradient(135deg, var(--purple-pale), var(--teal-pale));
  border-radius: var(--radius-md);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sauna-feature-visual .placeholder-icon {
  font-size: 4rem;
  opacity: 0.3;
}

@media (max-width: 700px) {
  .sauna-feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sauna-feature:nth-child(even) {
    direction: ltr;
  }
  .sauna-feature-visual {
    min-height: 200px;
  }
}

/* --- Yoga Page --- */
.class-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.class-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.class-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.class-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--gray);
}

.class-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.class-card p {
  color: var(--dark-soft);
  font-size: 0.95rem;
}

/* --- Oxygen / Soundbath / Meditation --- */
.wellness-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.trio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trio-card .trio-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
}

.trio-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.trio-card p {
  color: var(--dark-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-md);
}

.about-card-photo {
  height: 300px;
  background: linear-gradient(135deg, var(--purple-pale), var(--teal-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.4;
}

.about-card-body {
  padding: 2rem;
}

.about-card-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-card-body .role {
  color: var(--teal);
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.about-card-body p {
  color: var(--dark-soft);
  font-size: 0.95rem;
}

/* --- Shop / Retail Page --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.shop-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.shop-item-image {
  height: 240px;
  background: linear-gradient(135deg, var(--purple-pale), var(--teal-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.35;
  position: relative;
}

.shop-item-image .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  opacity: 1;
}

.shop-item-body {
  padding: 1.5rem;
}

.shop-item-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.shop-item-body .price-range {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.shop-item-body p {
  color: var(--dark-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.contact-detail .value {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
}

.contact-detail .value a {
  color: var(--dark);
}

.contact-detail .value a:hover {
  color: var(--purple);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Research Page --- */
.research-placeholder {
  text-align: center;
  padding: 4rem 0;
}

.research-placeholder .icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.research-placeholder h2 {
  margin-bottom: 1rem;
}

.research-placeholder p {
  color: var(--dark-soft);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.research-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.research-topics .topic-tag {
  background: var(--purple-pale);
  color: var(--purple);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-deep), var(--teal));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand .lotus-icon {
  width: 32px;
  height: 32px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--teal-light);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* --- Misc --- */
.lotus-svg {
  display: inline-block;
}

/* Placeholder image blocks */
.img-placeholder {
  background: linear-gradient(135deg, var(--purple-pale), var(--teal-pale));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-weight: 500;
  font-size: 0.9rem;
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .btn, .hamburger, .nav-overlay {
    display: none !important;
  }
  body {
    color: #000;
  }
}

/* --- Pricing Table --- */
.pricing-table {
  max-width: 600px;
  margin: 2rem auto;
}
.pricing-table h3 {
  color: var(--purple);
  margin: 2rem 0 0.5rem;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.pricing-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--purple-pale);
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--teal);
}
.pricing-table small {
  color: var(--dark-soft);
  font-weight: 400;
}

/* --- Benefits List --- */
.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
.benefits-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  font-size: 1.05rem;
}
.benefits-list li::before {
  content: '🪷';
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-size: 0.9rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.gallery-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.gallery-img:hover {
  transform: scale(1.02);
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card .product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.product-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 0.5rem;
}
