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

/* CSS Variables for design system */
:root {
  --bg-cream: #FAF9F6;
  --bg-dark: #242E18;
  --color-sage: #4E5936;
  --color-gold: #C6935C;
  --color-terracotta: #A8653A;
  --color-charcoal: #1F221A;
  --color-gray-light: #F4F1EA;
  --color-white: #FFFFFF;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 40px rgba(78, 89, 54, 0.12);
  --border-radius: 12px;
}

/* CSS Reset & General Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(96, 108, 56, 0.08);
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sage);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--color-terracotta);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-terracotta);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background-color: var(--color-sage);
  color: var(--color-white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: var(--shadow-subtle);
}

.nav-btn:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-charcoal);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Sections General Layout */
section {
  padding: 8rem 2rem 6rem;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--color-gray-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-family: var(--font-sans);
  color: var(--color-terracotta);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 12vh;
  padding-bottom: 4rem;
  position: relative;
  background-color: var(--bg-cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-content {
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  padding: 4.5rem 3.5rem;
  border-radius: 30px 120px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-content h1 {
  font-size: 3.8rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-content p {
  font-size: 1.1rem;
  color: #D1CDBC;
  margin: 0;
  max-width: 520px;
  line-height: 1.5;
}

.hero-accent-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 0.5rem 0;
}

.hero-accent-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #E5E2D9;
}

.hero-accent-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(168, 101, 58, 0.2);
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(198, 147, 92, 0.2);
  color: var(--color-white);
}

.btn-secondary {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-img {
  border-radius: 120px 30px 30px 30px;
  border: 8px solid var(--color-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge-circle {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  z-index: 5;
}

.hero-badge-circle svg {
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.hero-badge-circle span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-bottom-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
  background-color: var(--color-gray-light);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(78, 89, 54, 0.06);
}

.hero-bottom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(78, 89, 54, 0.1);
}

.hero-bottom-card:last-child {
  border-right: none;
}

.hero-bottom-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

.hero-bottom-card h4 {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0;
}

.hero-bottom-card p {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
  line-height: 1.35;
}

.hero-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(78, 89, 54, 0.1);
  padding-top: 2rem;
  width: 100%;
}


/* About / Who Are We Section Styling */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  display: block;
}

.offerings-box {
  background-color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(78, 89, 54, 0.05);
  border-top: 5px solid var(--color-sage);
}

.offerings-box h3 {
  font-size: 1.5rem;
  color: var(--color-sage);
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}

.offerings-box-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.box-offering-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(78, 89, 54, 0.06);
}

.box-offering-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.box-offering-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.about-text h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.about-text p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* Founder Section Styling */
.founder {
  background-color: var(--bg-cream);
  border-top: 1px solid rgba(78, 89, 54, 0.08);
  padding: 6rem 2rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.founder-content h2 {
  font-size: 3.2rem;
  margin-bottom: 0.2rem;
  color: var(--color-sage);
}

.founder-tagline-sub {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-terracotta);
  margin-bottom: 1.5rem;
}

.founder-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  border-left: 4px solid var(--color-gold);
}

.founder-badge-icon {
  color: var(--color-sage);
  flex-shrink: 0;
}

.founder-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-charcoal);
  line-height: 1.3;
}

.founder-mission-box {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background-color: #F5EFEB;
  border-radius: 15px;
  border-left: 4px solid var(--color-terracotta);
  margin-top: 2rem;
  align-items: flex-start;
}

.founder-mission-box svg {
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.founder-mission-box p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.5;
}

.founder-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-quote-bubble {
  background-color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 2rem;
  position: relative;
  border-left: 4px solid var(--color-sage);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-sage);
  line-height: 1.5;
}

.founder-quote-bubble::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: -15px;
  left: 10px;
  color: rgba(78, 89, 54, 0.08);
  font-family: Georgia, serif;
}

.founder-quote-bubble span {
  color: var(--color-terracotta);
  font-weight: 600;
}

.founder-img {
  border-radius: 120px 30px 30px 30px;
  border: 8px solid var(--color-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* Offline Sessions Section Styling */
.offline-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.offline-badge-tag {
  background-color: rgba(168, 101, 58, 0.1);
  color: var(--color-terracotta);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.offline-grid h2 {
  font-size: 2.8rem;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.offline-grid p {
  color: #555;
  margin-bottom: 2rem;
}

.offline-points-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offline-point-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.offline-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(78, 89, 54, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  flex-shrink: 0;
}

.offline-point-text h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.offline-point-text p {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
}

.offline-img-wrapper {
  position: relative;
}

.offline-img {
  border-radius: 30px 120px 30px 30px;
  border: 8px solid var(--color-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.offline-offerings {
  margin-top: 5rem;
}

.offline-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.offline-offering-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(78, 89, 54, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

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

.offering-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(78, 89, 54, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
}

.offline-offering-card h4 {
  font-size: 1.25rem;
  color: var(--color-sage);
  margin: 0;
}

.offline-offering-card p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
  line-height: 1.45;
}

.offline-accent-card {
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  box-shadow: 0 10px 25px rgba(36, 46, 24, 0.15);
}

.offline-accent-card svg {
  color: var(--color-gold);
  margin-top: 1rem;
}

.offline-results-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  margin-top: 6rem;
  align-items: center;
}

.offline-results-left h3 {
  font-size: 2.2rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
}

.offline-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.checklist-item svg {
  color: var(--color-sage);
  flex-shrink: 0;
}

.offline-coach-img {
  border-radius: 30px;
  border: 6px solid var(--color-white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* Program Details Section Styling */
.program-details {
  background-color: var(--bg-cream);
  border-top: 1px solid rgba(96, 108, 56, 0.08);
  border-bottom: 1px solid rgba(96, 108, 56, 0.08);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.program-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(96, 108, 56, 0.04);
  transition: var(--transition-smooth);
}

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

.program-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(96, 108, 56, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
}

.program-card h3 {
  font-size: 1.4rem;
  color: var(--color-sage);
  margin-bottom: 1.2rem;
}

.program-detail-item {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--color-charcoal);
}

.program-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.program-bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.program-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-weight: bold;
}

.program-footer-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-serif);
}

.program-footer-text p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-sage);
  margin-bottom: 1rem;
}

/* Online Yoga Focus Section */
.online-yoga {
  position: relative;
  border-radius: 24px;
  margin: 2rem;
  padding: 6rem 4rem;
}

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

.online-tag {
  background-color: rgba(221, 161, 94, 0.15);
  color: var(--color-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.online-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.online-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.online-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.online-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  padding: 8px;
}

.online-item-icon svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.online-item-text h4 {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.online-item-text p {
  font-size: 0.92rem;
  color: #D1CDBC;
  line-height: 1.45;
  margin: 0;
}

.online-image-wrapper {
  position: relative;
}

.online-img {
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.online-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(188, 108, 37, 0.3);
  text-align: center;
}

.online-badge .badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.online-badge .badge-txt {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(96, 108, 56, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.package-selector-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-sage);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-options-selector {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.option-btn {
  background-color: var(--color-gray-light);
  border: 1px solid rgba(96, 108, 56, 0.15);
  color: var(--color-charcoal);
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.option-btn:hover {
  border-color: var(--color-sage);
  background-color: rgba(96, 108, 56, 0.05);
}

.option-btn.active {
  background-color: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(96, 108, 56, 0.2);
}

.package-card.recommended {
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(221, 161, 94, 0.1);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  padding: 0.4rem 3rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.package-name {
  font-size: 1.8rem;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
}

.package-price {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.package-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.package-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1;
}

.package-price .period {
  font-size: 0.9rem;
  color: #777;
}

.package-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.package-features li svg {
  color: var(--color-sage);
  flex-shrink: 0;
}

.package-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.package-btn-primary {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.package-btn-primary:hover {
  background-color: var(--color-terracotta);
}

.package-btn-secondary {
  border: 2px solid var(--color-sage);
  color: var(--color-sage);
}

.package-btn-secondary:hover {
  background-color: var(--color-sage);
  color: var(--color-white);
}

/* Booking/Registration Form Section */
.booking {
  background: linear-gradient(135deg, rgba(96, 108, 56, 0.03) 0%, rgba(221, 161, 94, 0.03) 100%);
  border-top: 1px solid rgba(96, 108, 56, 0.05);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.booking-info h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.booking-info p {
  color: #4A5340;
  margin-bottom: 2.5rem;
}

.booking-info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.booking-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(96, 108, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  flex-shrink: 0;
}

.booking-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.booking-info-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.booking-form-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(96, 108, 56, 0.05);
  border: 1px solid rgba(96, 108, 56, 0.03);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #D6D2C4;
  background-color: #FAF9F5;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(96, 108, 56, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23606C38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
}

.btn-submit {
  width: 100%;
  background-color: var(--color-sage);
  color: var(--color-white);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(96, 108, 56, 0.1);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(188, 108, 37, 0.15);
}

/* FAQs Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  border: 1px solid rgba(96, 108, 56, 0.03);
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.8rem 2rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(96, 108, 56, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.8rem;
  color: #555;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(96, 108, 56, 0.15);
  box-shadow: 0 15px 30px rgba(96, 108, 56, 0.04);
}

.faq-item.active .faq-icon {
  background-color: var(--color-sage);
  color: var(--color-white);
  transform: rotate(180deg);
}

/* Footer styling */
footer {
  background-color: #171F11;
  color: var(--color-gray-light);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-brand p {
  color: #A3ACA0;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-sans);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #A3ACA0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(5px);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #A3ACA0;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #7B8578;
}

/* Animations */
@keyframes floatCircle {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-15px) scale(1.03);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .about-grid, .online-grid, .booking-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-text {
    order: -1;
  }
  .online-yoga {
    margin: 1rem;
    padding: 4rem 2rem;
  }
  .program-grid, .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 6rem 1.5rem 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-img {
    width: 75%;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-cream);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Logo Styling */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Sound Healing Section (#sound) Styling */
.sound {
  background-color: var(--bg-cream);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(78, 89, 54, 0.08);
}

.sound-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.sound-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sound-tag {
  color: var(--color-terracotta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.sound-content h2 {
  font-size: 3.2rem;
  color: var(--color-charcoal);
  line-height: 1.15;
}

.sound-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.sound-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}

.sound-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.sound-benefit-item svg {
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.sound-image-wrapper {
  position: relative;
}

.sound-img {
  border-radius: 30px 120px 30px 30px;
  border: 8px solid var(--color-white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  width: 100%;
}

.sound-badge-circle {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 0.5rem;
  z-index: 5;
}

.sound-badge-circle svg {
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.sound-badge-circle span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Sound Info Cards: Requirements & We Provide */
.sound-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.sound-info-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(78, 89, 54, 0.05);
  box-shadow: var(--shadow-subtle);
}

.sound-info-card h3 {
  font-size: 1.6rem;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(78, 89, 54, 0.06);
  padding-bottom: 0.8rem;
}

.sound-req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sound-req-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.4;
}

.sound-req-list li svg {
  color: var(--color-terracotta);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.sound-instruments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.instrument-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.instrument-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Sound Healing Banner Callout */
.sound-banner {
  background-color: #F5EFEB;
  border-left: 5px solid var(--color-terracotta);
  border-radius: 20px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-subtle);
}

.sound-banner-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sound-banner-left h3 {
  font-size: 1.8rem;
  color: var(--color-terracotta);
  margin: 0;
}

.sound-banner-left p {
  color: #555;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.sound-banner-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.sound-banner-right {
  border-left: 2px solid rgba(168, 101, 58, 0.15);
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sound-banner-right h4 {
  font-size: 1.4rem;
  color: var(--color-sage);
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
}

.sound-banner-right p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Media Query Responsive Styles for Sound Healing */
@media (max-width: 992px) {
  .sound-grid, .sound-info-grid, .sound-banner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sound-banner-right {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(168, 101, 58, 0.15);
    padding-top: 2rem;
  }
}

/* Testimonials / Reviews Section Styling */
.reviews {
  padding: 6rem 2rem;
  background-color: var(--color-white);
  border-top: 1px solid rgba(78, 89, 54, 0.08);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.review-card {
  background-color: var(--bg-cream);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(78, 89, 54, 0.05);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

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

.review-stars {
  display: flex;
  gap: 0.3rem;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.review-content {
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(78, 89, 54, 0.08);
  padding-top: 1.2rem;
}

.review-client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-sage);
  color: var(--color-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

.review-client-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0;
}

.review-client-info span {
  font-size: 0.8rem;
  color: var(--color-sage);
  display: block;
  margin-top: 0.1rem;
}

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

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }
}

/* ==========================================================================
   Hero Cover Poster Section (Page 1 Layout)
   ========================================================================== */
.cover-hero-section {
  position: relative;
  min-height: 94vh;
  padding-top: 130px;
  padding-bottom: 3.5rem;
  background-color: #F6F3ED;
  background-image: radial-gradient(#E8E3D8 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(78, 89, 54, 0.1);
}

.leaf-decor {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.leaf-top-left {
  top: 60px;
  left: -10px;
  transform: rotate(-10deg);
}

.leaf-bottom-right {
  bottom: -10px;
  right: -10px;
  transform: rotate(5deg);
}

.cover-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover-logo-box {
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.cover-logo-box:hover {
  transform: scale(1.02);
}

.cover-logo-img {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.04));
}

.cover-tagline {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: #4A523A;
  letter-spacing: 0.5px;
  margin-bottom: 3.5rem;
  padding: 0.5rem 1.8rem;
  border-top: 1px solid rgba(74, 82, 58, 0.15);
  border-bottom: 1px solid rgba(74, 82, 58, 0.15);
  display: inline-block;
}

.cover-presenter-box {
  margin-bottom: 3.5rem;
}

.cover-presenter-label {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #777C68;
  font-weight: 400;
  display: block;
  margin-bottom: 0.4rem;
}

.cover-presenter-name {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #2C3322;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.cover-presenter-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  color: #4A523A;
}

.cover-contact-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  margin-top: 1rem;
  padding: 1rem 2.2rem;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(78, 89, 54, 0.12);
}

.cover-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: #3B4230;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.cover-contact-item:hover {
  color: var(--color-terracotta);
  transform: translateY(-1px);
}

.cover-contact-item svg {
  color: var(--color-sage);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.cover-contact-item:hover svg {
  color: var(--color-terracotta);
}

/* ==========================================================================
   Section 2: Who Are We & Sessions Offered (Page 2 Layout)
   ========================================================================== */
.who-we-are-section {
  padding: 5rem 2rem 6rem;
  background-color: #F7F4EE;
  position: relative;
}

.who-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.who-olive-card {
  background-color: #647055;
  color: #FFFFFF;
  padding: 3.5rem 4rem;
  border-radius: 20px 20px 140px 20px;
  box-shadow: 0 15px 35px rgba(62, 70, 52, 0.12);
  position: relative;
  overflow: hidden;
}

.who-title {
  font-family: var(--font-sans);
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.who-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.who-paragraphs p {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  line-height: 1.65;
  color: #F0F3EB;
  max-width: 920px;
  font-weight: 400;
}

.who-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.who-offerings-col {
  position: relative;
  padding-bottom: 2rem;
}

.who-offerings-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #38402D;
  margin-bottom: 1.5rem;
}

.who-offerings-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.who-offerings-list li {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  color: #333A27;
  position: relative;
  padding-left: 1.6rem;
  display: flex;
  align-items: center;
}

.who-offerings-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #647055;
  font-size: 1.6rem;
  line-height: 1;
}

.who-cta-box {
  margin-top: 1.8rem;
}

.btn-request-consultation {
  background-color: var(--color-terracotta);
  color: #FFFFFF;
  padding: 0.95rem 2.4rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(168, 101, 58, 0.25);
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-request-consultation:hover {
  background-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 28px rgba(198, 147, 92, 0.3);
  color: #FFFFFF;
}

.who-leaf-bottom-left {
  position: absolute;
  bottom: -40px;
  left: -20px;
  pointer-events: none;
  opacity: 0.85;
}

.who-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-arch-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  border: 7px solid #FFFFFF;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #EBF0E6;
}

.who-meditating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .cover-presenter-name {
    font-size: 2.3rem;
  }

  .who-olive-card {
    padding: 2.5rem 2rem;
    border-radius: 20px 20px 80px 20px;
  }

  .who-title {
    font-size: 2.4rem;
  }

  .who-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .who-image-col {
    order: -1;
  }

  .who-arch-frame {
    max-width: 300px;
  }

  .cover-contact-bar {
    flex-direction: column;
    gap: 0.8rem;
    border-radius: 24px;
  }
}

/* ==========================================================================
   Sound Healing Benefits 4-Column Row Format (Photo 2 Design)
   ========================================================================== */
.sound-benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 2rem 0 2.5rem;
  padding: 1.4rem 0.5rem;
  background-color: rgba(247, 244, 238, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(78, 89, 54, 0.1);
}

.sound-benefit-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(78, 89, 54, 0.15);
  gap: 0.75rem;
}

.sound-benefit-col:last-child {
  border-right: none;
}

.sound-benefit-icon {
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sound-benefit-col:hover .sound-benefit-icon {
  transform: translateY(-3px) scale(1.08);
}

.sound-benefit-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sound-benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0;
  }
  .sound-benefit-col:nth-child(2) {
    border-right: none;
  }
  .sound-benefit-col {
    border-bottom: 1px solid rgba(78, 89, 54, 0.1);
    padding-bottom: 0.8rem;
  }
  .sound-benefit-col:nth-child(3),
  .sound-benefit-col:nth-child(4) {
    border-bottom: none;
  }
}

/* ==========================================================================
   Review Form Pane & 4/5 Star Selection Styles
   ========================================================================== */
.review-form-pane {
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
  animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-form-card {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(78, 89, 54, 0.12);
}

.review-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-charcoal);
  margin-bottom: 0.3rem;
}

.review-form-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
}

.rating-selection-box {
  background-color: rgba(247, 244, 238, 0.7);
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(198, 147, 92, 0.2);
}

.rating-box-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  display: block;
  margin-bottom: 0.8rem;
}

.star-rating-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.star-option-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background-color: #FFFFFF;
  border: 2px solid #E0DAD0;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.star-option-card input[type="radio"] {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.star-option-card:hover {
  border-color: var(--color-gold);
  background-color: #FFFDF9;
}

.star-option-card.active {
  border-color: var(--color-gold);
  background-color: #FFF9F0;
  box-shadow: 0 4px 14px rgba(198, 147, 92, 0.15);
}

.stars-gold {
  color: var(--color-gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.star-label-txt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  display: block;
}

.star-restriction-note {
  font-size: 0.82rem;
  color: #777;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.review-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.review-form-card label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.review-form-card input,
.review-form-card textarea {
  padding: 0.85rem 1.1rem;
  border: 1px solid #DED8CD;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background-color: #FAF8F5;
  transition: var(--transition-smooth);
}

.review-form-card input:focus,
.review-form-card textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(78, 89, 54, 0.1);
}

.review-success-alert {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background-color: #E8F5E9;
  color: #2E7D32;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #C8E6C9;
}

.new-submitted-card {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .star-rating-buttons {
    grid-template-columns: 1fr;
  }
  .review-form-grid {
    grid-template-columns: 1fr;
  }
  .review-form-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Floating Quick Action Buttons (WhatsApp & Instagram)
   ========================================================================== */
.floating-quick-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fab-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-4px);
}

.fab-tooltip {
  position: absolute;
  right: 68px;
  background-color: #2D3129;
  color: #FFFFFF;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(10px);
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .floating-quick-actions {
    bottom: 1.2rem;
    right: 1.2rem;
    gap: 0.75rem;
  }
  .fab-btn {
    width: 50px;
    height: 50px;
  }
  .fab-tooltip {
    display: none;
  }
}




