@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  border: none;
  outline: none;
  list-style: none;
}

body {
  background-color: #f9f9f9;
}

:root {
  --color-primary: #d8d5dd;
  --color-secondary: #f9f4d7;
  --linear-bg: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  --text-primary: #000000;
  --text-secondary: #ffffff;
  --bg-color: #d8d5dd;
}

a {
  text-decoration: none;
  color: currentColor;
  font-size: 16px;
  font-family: "Playfair Display";
}

h1, h2, h3 {
  font-family: "Playfair Display";
  font-style: normal;
  color: currentColor;
  line-height: 150%;
}

h1 { font-size: 64px; font-weight: 700; }
h2 { font-size: 48px; font-weight: 700; }
h3 { font-size: 32px; font-weight: 400; line-height: 120%; }

p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: currentColor;
}

.max-width {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
}

header,
section {
  padding: 92px 0 120px;
}

.flex {
  display: flex;
  width: 100%;
}

.flex--between,
.flex--full {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.flex--between > :first-child,
.flex--full > :first-child {
  margin-right: 0;
}

img {
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  content-visibility: auto;
}

.img--max {
  max-width: 588px;
}

/* Ensure consistent heights for healing modalities images - match text-box height */
.holistic-crystal .img--max img,
.holistic-healing .img--max img,
.holistic-meditation .img--max img,
.holistic-reading .img--max img,
.holistic-chord-cutting .img--max img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
  font-family: "Playfair Display";
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 170, 149, 0.3);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.btn--icon img {
  width: 22px;
  height: 22px;
}

/* Old navbar styles removed - using modern navbar instead */

.holistic-nav.nav-glass {
  background-color: rgba(216, 213, 221, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(175, 188, 172, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.holistic-nav .nav-logo img {
  max-width: 150px;
}

.holistic-nav .link-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.burger-menu {
  display: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.burger-menu:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.burger-menu img {
  display: block;
  width: 24px;
  height: 24px;
}

.dropdown-menu-nav {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  background: white;
  padding: 24px 0;
  z-index: 998;
}

.dropdown-menu-nav.visible {
  display: block;
}

/* Home hero keeps 100vh */
.home-hero {
  background-image: var(--linear-bg), url(../img/home-page/home-hero.webp);
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* All other page heroes use 60vh */
.about-hero,
.life-hero,
.couns-hero,
.healing-hero,
.psych-k-hero,
.reiki-hero {
  background-image: var(--linear-bg), url(../img/home-page/home-hero.webp);
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.text-box {
  max-width: 588px;
  width: 100%;
}

.text-box > :not(:last-child) {
  margin-bottom: 24px;
}

.text-box span {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .max-width {
    padding: 0 68px;
  }
  
  .flex-column {
    flex-direction: column;
  }
  
  .img--max {
    margin: 0 auto;
  }
  
  .text-box {
    max-width: 100%;
  }

  /* Adjust healing modalities image heights for tablets - ensure they match text-box height */
  .holistic-crystal .img--max img,
  .holistic-healing .img--max img,
  .holistic-meditation .img--max img,
  .holistic-reading .img--max img,
  .holistic-chord-cutting .img--max img {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .max-width {
    padding: 0 36px;
  }
  
  header,
  section {
    padding: 72px 0 104px;
  }
  
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  
  .holistic-nav .link-box {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }

  /* Adjust healing modalities image heights for mobile - ensure they match text-box height */
  .holistic-crystal .img--max img,
  .holistic-healing .img--max img,
  .holistic-meditation .img--max img,
  .holistic-reading .img--max img,
  .holistic-chord-cutting .img--max img {
    height: 400px;
  }
}

@media (max-width: 425px) {
  .max-width {
    padding: 0 24px;
  }
  
  header,
  section {
    padding: 52px 0 84px;
  }
  
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Adjust healing modalities image heights for very small mobile - ensure they match text-box height */
  .holistic-crystal .img--max img,
  .holistic-healing .img--max img,
  .holistic-meditation .img--max img,
  .holistic-reading .img--max img,
  .holistic-chord-cutting .img--max img {
    height: 350px;
  }
}

/* Enhanced block animations - gentle and calming */
@keyframes appear {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.block:not(.animate-on-scroll) {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
  will-change: opacity, transform;
}

/* Enhanced form focus states */
.form-group.focused label {
  color: #606D62;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(175, 188, 172, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #AFBCAC;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(175, 188, 172, 0.1);
}

/* Performance improvements */
img {
  content-visibility: auto;
}

.btn--icon span {
  display: block;
  margin-left: 15px;
}

.max-width {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
}

header,
section {
  padding: 92px 0 120px 0;
}

@media (max-width: 1024px) {
  .max-width {
    padding: 0 68px 0 68px;
  }
}
@media (max-width: 768px) {
  .max-width {
    padding: 0 36px 0 36px;
  }

  header,
  section {
    padding: 72px 0 104px 0;
  }
}
@media (max-width: 426px) {
  .max-width {
    padding: 0 24px 0 24px;
  }

  header,
  section {
    padding: 60px 0 88px 0;
  }

  header {
    text-align: left;
    padding-top: 100px;
  }

  header .full-logo {
    max-width: none;
    width: fit-content;
    display: block;
    margin: 0 0 24px 0;
  }

  header .full-logo img {
    width: 150px;
    height: auto;
    max-width: 100%;
    display: block;
  }

  header .text-box {
    text-align: left;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  header h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  header p {
    font-size: 18px;
  }
}

/* Components */
.flex {
  display: flex;
}
.flex--between {
  justify-content: space-between;
}
.flex--full {
  justify-content: space-between;
  align-items: center;
}
.flex--between > :first-child,
.flex--full > :first-child {
  margin-right: 0;
}

img {
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.img--max {
  width: 100%;
  max-width: 588px; /* or any other max-width */
  height: auto;
}

section ul {
  list-style: none;
  margin-top: 16px;
}

section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
}
section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #e1d8cc;
  display: inline-block;
  border-radius: 100%;
}
.text-box {
  max-width: 588px;
  width: 100%;
}
.text-box > :not(:last-child) {
  margin-bottom: 24px;
}
.text-box span {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: currentColor;
}
.text-box p {
  max-width: 619px;
}
.text-box a {
  margin-top: 45px;
}

.holistic-title {
  text-align: center;
  padding-bottom: 20px;
}
.holistic-title h2 {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .flex-column {
    flex-direction: column;
  }
  .flex-reverse {
    flex-direction: column-reverse;
  }
  .flex--between > :first-child,
  .flex--full > :first-child {
    margin: 0;
  }
  .flex-column .img--max,
  .flex-reverse .img--max {
    margin-bottom: 30px;
  }
  .img--max {
    max-width: 100%; /* or any other max-width */
  }
  .text-box {
    max-width: 100%;
  }
  .text-box p {
    max-width: 100%;
  }
}

@media (max-width: 850px) {
  .img--max {
    max-width: 100%;
    /* align-self: flex-start; */
  }

  .holistic-transform .text-box {
    align-self: start;
  }

  .holistic-transform .img-box {
    align-self: start;
  }
}

/* call to action section */
.cta-section {
  padding: 88px 0 120px 0;
  text-align: end;
}
.cta-section a {
  margin-top: 24px;
  display: inline-block;
}
.cta-section--2 {
  background-image: var(--linear-bg), url(../img/general/cta-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: var(--text-secondary);
}

/* Contentful CTA Background Override */
.cta-section--2.has-contentful-bg {
  background-image: var(--linear-bg), var(--cta-bg-image);
}

.cta-section span {
  text-transform: uppercase;
  font-size: 2.6vw;
  display: block;
  font-family: Playfair Display;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1024px) {
  .cta-section--2 h2 {
    text-align: center;
  }
  .cta-section--2 a {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    text-align: center;
  }
  .cta-section span {
    font-size: 32px;
  }
}

@media (max-width: 425px) {
  .cta-section span {
    font-size: 32px;
  }
}
/* call to action end */

/* Components */

/* navigation - OLD STYLES DISABLED */
/* Modern navbar styles are in navbar-clean.css */
/*
.holistic-nav {
  background-color: var(--bg-color);
  padding: 16px 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 10;
  color: var(--text-color-2);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), 
              background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1),
              backdrop-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.holistic-nav.nav-glass {
  background-color: rgba(216, 213, 221, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(175, 188, 172, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.holistic-nav.nav-hidden {
  transform: translateY(-100%);
}
*/

.holistic-nav .nav-logo {
  height: 48px;
  transition: transform 0.3s ease;
}

.holistic-nav .nav-logo:hover {
  transform: scale(1.05);
}

.holistic-nav .nav-logo img {
  height: 100%;
}

.holistic-nav .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.holistic-nav .link-box {
  display: flex;
  align-items: center;
  position: relative;
}

.holistic-nav .links:not(:last-child) {
  margin-right: 37px;
  transition: color 0.3s ease;
}

.holistic-nav .links:hover {
  color: rgba(0, 0, 0, 0.7);
}

/* OLD NAVBAR DROPDOWN STYLES - COMMENTED OUT FOR NEW MODERN NAVBAR */
/* 
.holistic-nav .link-list {
  position: relative;
}

.holistic-nav .dropdown {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.holistic-nav .dropdown::after {
  content: "▾";
  display: inline-block;
  transition: transform 0.3s ease;
}

.holistic-nav .link-list:hover .dropdown::after {
  transform: rotate(180deg);
}

.holistic-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-color);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 9;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.holistic-nav .link-list:hover .dropdown-menu,
.holistic-nav .dropdown[aria-expanded="true"] + .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.holistic-nav .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.holistic-nav .dropdown-menu li {
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.holistic-nav .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.holistic-nav .dropdown-menu li:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.holistic-nav .dropdown-menu li a {
  display: block;
  color: var(--text-color-2);
  transition: color 0.3s ease;
  white-space: nowrap;
}
*/

/* Mobile Navigation */
.burger-menu {
  display: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: none;
  border: none;
}

.burger-menu:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.burger-menu img {
  display: block;
  width: 24px;
  height: 24px;
}

.dropdown-menu-nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 80px;
  bottom: 0;
  z-index: 100;
  background-color: var(--bg-color);
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0;
  overflow-y: auto;
}

.dropdown-menu-nav.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-nav .link-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.dropdown-menu-nav .links {
  font-size: 18px;
  padding: 8px 0;
  transition: all 0.3s ease;
  width: 100%;
}

.dropdown-menu-nav .links:hover {
  transform: translateX(10px);
  color: rgba(0, 0, 0, 0.7);
}

.dropdown-menu-nav .btn.btn--primary {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  font-size: 18px;
  background-color: var(--color-secondary);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dropdown-menu-nav .btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background-color: #f0e9c0;
}

.dropdown-menu-nav .btn.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .holistic-nav .link-box {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }
  
  .dropdown-menu-nav .link-box {
    padding: 20px 24px;
  }
  
  .dropdown-menu-nav .links:not(.btn) {
    font-size: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .dropdown-menu-nav .btn.btn--primary {
    margin-top: 32px;
    position: sticky;
    bottom: 24px;
    max-width: calc(100% - 48px);
    font-weight: 600;
  }
}

@media (max-width: 425px) {
  .dropdown-menu-nav .links:not(.btn) {
    font-size: 18px;
  }
  
  .dropdown-menu-nav .btn.btn--primary {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* navigation end */

/* Home Hero */
header {
  background-position: center;
  background-size: cover;
  color: var(--linear-bg);
  color: white;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.home-hero {
  background-image: var(--linear-bg), url(../img/home-page/home-hero.webp);
}
.about-hero {
  background-image: var(--linear-bg), url(../img/about-page/about-hero.webp);
}
.life-hero {
  background-image: var(--linear-bg), url(../img/life-activation/life-hero.webp);
}
.couns-hero {
  background-image: var(--linear-bg), url(../img/counceling/couns-hero.webp);
}
.healing-hero {
  background-image: var(--linear-bg),
    url(../img/healing-Modalities/healing-hero.webp);
}
.reiki-hero {
  background-image: var(--linear-bg), url(../img/reiki/reiki-hero.webp);
}
.psych-k-hero {
  background-image: var(--linear-bg), url(../img/psych-k/psych-k-hero.webp);
}
header .full-logo {
  max-width: none;
  width: fit-content;
  align-self: flex-start;
  margin: 0 0 25px 0;
}
header .full-logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
  display: block;
}
header .slogan-logo {
  max-width: 100px;
  margin: 25px 0;
}
header span:not(:last-child) {
  margin-right: 22px;
}
header .text-box {
  max-width: 680px;
}

@media (max-width: 768px) {
  header {
    background-attachment: scroll;
    background-position: center;
    background-position-y: 8px;
  }
}

@media (max-width: 426px) {
  header {
    text-align: left;
    padding-top: 100px;
  }

  header .full-logo {
    width: fit-content;
    display: block;
    margin: 0 0 24px 0;
  }

  header .full-logo img {
    width: 150px;
    height: auto;
    max-width: 100%;
    display: block;
  }

  header .text-box {
    text-align: left;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  header h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  header p {
    font-size: 18px;
  }
}

/* holistic welcome
.holistic-welcome .max-width {
} */
/* holistic welcome end*/

/* holsitic services */
.holistic-services {
  background-color: var(--bg-color);
}
.holistic-services .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.holistic-services .content-box {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.holistic-services .img-box {
  max-width: 81.1px;
  overflow: visible;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.holistic-services .img-box img {
  width: 150%;
  max-width: none;
}

.holistic-services h3 {
  white-space: nowrap;
}

.holistic-services p {
  margin: 14px auto 22px;
  opacity: 0.7;
}
.holistic-services .btn {
  width: 100%;
  border-radius: 300px;
  margin-top: auto;
}

@media (max-width: 1440px) {
  .holistic-services .grid {
    grid-template-columns: 1fr 1fr;
  }

  .holistic-services p {
    max-width: 390.88px;
  }

  .holistic-services .btn {
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .holistic-services .grid {
    grid-template-columns: 1fr;
  }

  .holistic-services p {
    max-width: 390.88px;
  }

  .holistic-services .img-box {
    max-width: 162px;
  }

  .holistic-services .img-box img {
    width: 150% !important;
    max-width: none !important;
  }
}

@media (max-width: 425px) {
  .holistic-services .btn {
    max-width: 100%;
  }

  .holistic-services .img-box {
    max-width: 162px;
  }

  .holistic-services .img-box img {
    width: 150% !important;
    max-width: none !important;
  }
}

/* holistic transform */
.holistic-transform .text-box {
  max-width: 616.5px;
  width: 100%;
}
.holistic-transform .img-box {
  max-width: 427px;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .holistic-transform .img-box {
    margin-top: 88px;
  }
  .holistic-transform p {
    margin-bottom: 0 !important;
  }
}

holistic testimonial 
.holistic-testimonials {
  background-color: var(--bg-color);
  padding: 80px 0;
}


.holistic-testimonials .text-box {
  max-width: 100%;
  margin-bottom: 80px;
}
.holistic-testimonials h2 {
  max-width: 673px;
}
.holistic-testimonials button {
  width: 64px;
  height: 64px;
  border: 3px solid var(--text-color-2);
  border-radius: 1000px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.icon {
  fill: #121212; /* Change this to the color you want */
  width: 32px; /* Optional: adjust the width */
  height: 32px; /* Optional: adjust the height */
}

.icon:active {
  fill: #f9f9f9;
  background-color: transparent;
}
.holistic-testimonials .icon {
  height: 28px;
}
.holistic-testimonials .prev {
  transform: none;
}
.holistic-testimonials button:active {
  background-color: #121212;
}
.holistic-testimonials button img {
  max-width: 22.43px;
  width: 100%;
}
.holistic-testimonials .testimonial-slider {
  max-width: 794px;
}
.holistic-testimonials .img-box {
  width: 153.34px;
  margin-left: 100px;
}
.holistic-testimonials .testimonial-text {
  max-width: 794px;
  margin-bottom: 40px;
}
.holistic-testimonials .view-more {
  text-decoration: underline var(--text-color-2);
  color: var(--text-color-2);
}

.holistic-testimonials .location {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: var(--text-color-2);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .holistic-testimonials .text-box {
    align-items: start;
  }
  .holistic-testimonials .slider-nav {
    margin-top: 32px;
  }
  .holistic-testimonials .img-box {
    margin: 0 auto 32px 0;
    max-width: 100px;
    align-self: flex-start;
  }
}

@media (max-width: 425px) {
  .holistic-testimonials .img-box {
    margin: 0 auto 32px 0;
    max-width: 80px;
    align-self: flex-start;
  }

  .holistic-testimonials button {
    width: 34px;
    height: 34px;
  }

  .holistic-testimonials .text-box {
    margin-bottom: 64px;
  }

  .icon {
    fill: #121212;
    width: 16px;
    height: 16px;
  }
}

/* contactus */
.holistic-contact img {
  max-width: 32px;
}
.holistic-contact h2 {
  margin: 0px 0 24px 0;
}
.holistic-contact p {
  max-width: 531px;
}
.holistic-contact .flex {
  margin-top: 64px;
  justify-content: space-between;
}
.holistic-contact .contact-form {
  background-color: transparent;
  margin-right: 29px;
  max-width: 756px;
  width: 100%;
}
.form-group {
  margin-bottom: 15px;
  width: 100%;
}
.form-flex {
  display: flex;
  margin-bottom: 29px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 165.5%; /* 29.79px */
}

.form-group input,
.form-group select,
.form-group textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid rgba(175, 188, 172, 0.15);
  border-bottom: 2px solid rgba(175, 188, 172, 0.3);
  border-radius: 6px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.interested {
  color: #000;
}

.form-group.full-width {
  width: 100%;
}

.holistic-contact button {
  margin-top: 45px;
  font-size: 16px;
}
.holistic-contact .information {
display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.holistic-contact .information h3 {
  margin-bottom: 2rem !important;
}
/* .holistic-contact .information .btn--icon:nth-child(3) {
  margin: 24px 0;
} */
.contact-number {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-number::before {
  content: url(asset/img/contactus/phone-call-icon.svg);
  margin-right: 14px;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .holistic-contact .flex {
    flex-direction: column;
  }
  .holistic-contact .information {
    align-self: start;
    margin-top: 64px;
    border: none;
    border-top: 1px solid #ccc;
    padding: 0;
    padding-top: 20px;
  }

  .holistic-contact .contact-form {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .holistic-contact .form-flex {
    flex-direction: column;
    margin: 0;
  }
  .holistic-contact .form-group:last-child {
    margin: 0;
    margin: 32px 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
  }

  .information {
    width: 100%;
    text-align: start;
  }

  .information h3 {
    margin-top: 32px;
    font-size: 40px !important;
    margin-bottom: 54px !important;
  }

  .information a {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0;
  }
  .information span {
    margin: 0;
    margin-top: 12px;
  }
}

/* disclaimer */
.holistic-disclaimer h2 {
  font-family: poppins;
  font-weight: 500;
  font-size: 40px;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}

.holistic-disclaimer p:not(:last-child) {
  margin-bottom: 24px;
  font-size: 18px;
}

/* Footer */
.holistic-footer {
  background-color: var(--bg-color);
  padding: 59px 0 54px;
}
.holistic-footer .flex {
  justify-content: space-between;
}
.holistic-footer .left-margin {
  display: flex;
  align-items: center;
}
.holistic-footer .img-box:first-child {
  max-width: 66px;
  margin-right: 17px;
}
.holistic-footer .img-box:last-child {
  max-height: 22px;
}
.holistic-footer .right-margin {
  display: flex;
  align-items: center;
}
.holistic-footer .links {
  color: var(--text-color-2);
}
.holistic-footer .links:hover {
  text-decoration: underline;
}
.holistic-footer .links:not(:last-child) {
  margin-right: 32px;
}
.holistic-footer .flex:first-child {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--text-primary);
}
.holistic-footer .flex:last-child {
  padding-top: 32px;
}
.holistic-footer .flex:last-child a {
  text-decoration: underline;
}
@media (max-width: 1255px) {
  .holistic-footer .flex:first-child {
    flex-direction: column;
  }

  .holistic-footer .left-margin {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .holistic-footer .left-margin {
    flex-direction: column;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--text-color-2);
    padding-bottom: 24px;
  }
  .holistic-footer .left-margin .img-box:not(:last-child) {
    margin-bottom: 24px;
  }
  .holistic-footer .left-margin .img-box:last-child {
    max-width: 100%;
    width: 100%;
  }
  .holistic-footer .right-margin {
    flex-direction: column;
    align-items: center;
  }
  .holistic-footer .links:not(:last-child) {
    margin: 0;
    margin-bottom: 32px;
  }
  .holistic-footer .flex:last-child {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .holistic-footer .flex:last-child p {
    margin-bottom: 24px;
  }
}

/* About Us */
.about-hero .flex {
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

.about-hero .text-box {
  flex: 1;
  max-width: 588px;
}

.about-hero .content-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 392px;
  width: 100%;
  aspect-ratio: 1;
}

.about-hero .content-box a {
  width: 100%;
  transition: all 0.3s;
  display: block;
  aspect-ratio: 1;
}

.about-hero .content-box a:hover {
  transform: scale(1.05);
}

.about-hero .content-box .img-box {
  width: 100%;
  height: 100%;
}

.about-hero .content-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1255px) {
  .about-hero .flex {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .about-hero .text-box {
    max-width: 100%;
  }

  .about-hero .content-box {
    margin-top: 3rem;
    max-width: 392px;
  }
}

@media (max-width: 425px) {
  .about-hero .flex {
    text-align: left;
  }

  .about-hero .content-box {
    margin-top: 2rem;
    max-width: 300px;
  }
}

/* holistic goals
.holistic-goals {
} */
.holistic-goals .flex {
  justify-content: space-between;
}
.holistic-goals .top-left {
  display: flex;
}
.holistic-goals .text-box {
  max-width: 295px;
}
.holistic-goals .text-box h2 {
  margin-bottom: 27px;
}
.holistic-goals .text-box:not(:last-child) {
  margin-right: 47px;
}
.holistic-goals .top-right {
  align-self: flex-end;
}
.holistic-goals .content-box {
  margin-top: 56px;
  justify-content: space-between;
}
.holistic-goals .img-box {
  width: 100%;
}
.holistic-goals .img-box:not(:last-child) {
  margin-right: 47px;
}

@media (max-width: 1024px) {
  .holistic-goals .img-box:not(:last-child) {
    margin-right: 0;
  }

  .holistic-goals .flex:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 45px;
    row-gap: 45px;
  }

  .holistic-goals .flex:first-child {
    flex-direction: column;
    justify-content: start;
    margin-bottom: 64px;
  }

  .holistic-goals .top-left {
    margin-bottom: 45px;
  }

  .holistic-goals .top-right {
    align-self: flex-start;
  }
  .holistic-goals .img-box {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .holistic-goals .top-left {
    flex-direction: column;
  }
  .holistic-goals .text-box {
    max-width: 395px;
  }
  .holistic-goals .text-box:not(:last-child) {
    margin: 0;
    margin-bottom: 32px;
  }

  .holistic-goals .flex:last-child {
    grid-template-columns: 1fr;
  }

  .holistic-goals .text-box {
    max-width: 100%;
    width: 100%;
  }
}
/* holistic goals end */

/* holistic-journey */
.holistic-journey {
  padding-bottom: 0;
  /* background-color: var(--bg-color); */
}

/* holistic journey end */

.holistic-benefits {
  background-color: #e3e1e6;
}

.holistic-benefits .flex{
  justify-content: space-between;
}

.holistic-benefits h2 {
  text-align: center;
  margin-bottom: 64px;
}

.holistic-benefits .content-box {
  background-color: #ffffff;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  padding: 30px;
  transition: transform 0.3s ease;

}

.holistic-benefits .content-box:not(:last-child) {
  margin-right: 20px;
}


.holistic-benefits h4 {
  font-family: "Poppins";
  color: #2c3e50;
  font-size: 1.5em;
  margin-bottom: 20px;
  border-bottom: 2px solid #f9f4d7;
  padding-bottom: 10px;
  white-space: nowrap;
}

.holistic-benefits .img-box {
  transform: scale(1.2);
}

.holistic-benefits .rotate img {
  transform: rotate(-30deg);
}

@media (max-width: 1204px) {
  .holistic-benefits .flex {
    flex-direction: column;

    /* align-items: start; */
  }

  .holistic-benefits h4 {
    white-space: wrap;
  }
  .holistic-benefits .content-box:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .holistic-benefits .left-margin {
    margin-bottom: 24px;
  }
  .holistic-benefits .img-box {
    max-width: 100%;
    display: none;
  }

  .holistic-benefits .left-margin.flex-column {
    flex-direction: row;
    justify-content: space-between;
  }
  .holistic-benefits .content-box {
    flex-basis: calc(33.333% - 20px);
  }
}

/* Testimonial slider styles */
.testimonial-slider {
  position: relative;
  max-width: 794px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  padding: 20px;
}

.testimonial.active {
  display: block;
}

.button-arrows {
  width: 64px;
  height: 64px;
  border: 3px solid var(--text-color-2);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}

.button-arrows:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.button-arrows:active {
  background-color: #121212;
}

.button-arrows.prev .icon {
  transform: rotate(180deg);
}

.icon {
  fill: #121212;
  width: 32px;
  height: 32px;
  transition: fill 0.3s;
}

.button-arrows:active .icon {
  fill: #ffffff;
}

.testimonial-text {
  margin-bottom: 20px;
  line-height: 1.6;
}

.view-more {
  color: var(--text-color-2);
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

.location {
  font-style: italic;
  margin-top: 15px;
  color: var(--text-color-2);
}

@media (max-width: 768px) {
  .button-arrows {
    width: 48px;
    height: 48px;
  }

  .icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 425px) {
  .button-arrows {
    width: 40px;
    height: 40px;
  }

  .icon {
    width: 20px;
    height: 20px;
  }
}

/* Home page header keeps 100vh */
.home-hero .max-width {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding-left: 100px;
}

/* All other page headers use 60vh */
.about-hero .max-width,
.life-hero .max-width,
.couns-hero .max-width,
.healing-hero .max-width,
.psych-k-hero .max-width,
.reiki-hero .max-width {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
  padding-left: 100px;
}

header .full-logo {
  max-width: none;
  width: fit-content;
  align-self: flex-start;
  margin: 0 0 25px 0;
}

@media (max-width: 1024px) {
  .home-hero .max-width,
  .about-hero .max-width,
  .life-hero .max-width,
  .couns-hero .max-width,
  .healing-hero .max-width,
  .psych-k-hero .max-width,
  .reiki-hero .max-width {
    padding-left: 68px;
  }
}

@media (max-width: 768px) {
  .home-hero .max-width,
  .about-hero .max-width,
  .life-hero .max-width,
  .couns-hero .max-width,
  .healing-hero .max-width,
  .psych-k-hero .max-width,
  .reiki-hero .max-width {
    padding-left: 36px;
  }
}

@media (max-width: 426px) {
  .home-hero .max-width,
  .about-hero .max-width,
  .life-hero .max-width,
  .couns-hero .max-width,
  .healing-hero .max-width,
  .psych-k-hero .max-width,
  .reiki-hero .max-width {
    padding-left: 24px;
  }
}

/* Home Hero Background - Default */
.home-hero {
  background-image: var(--linear-bg), url(../img/home-page/home-hero.webp);
  /* ... existing hero styles ... */
}

/* Contentful Hero Background Override */
.home-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

.about-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

.couns-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

.life-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

.healing-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

.reiki-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

.psych-k-hero.has-contentful-bg {
  background-image: var(--linear-bg), var(--hero-bg-image);
}

/* Contentful Image Loading States */
.contentful-loading {
  opacity: 0.7;
  position: relative;
}

.contentful-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #606D62;
  border-radius: 50%;
  animation: contentful-spin 1s linear infinite;
  z-index: 1;
}

@keyframes contentful-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contentful-loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.contentful-error {
  opacity: 1;
  border: 1px solid #ff6b6b;
}

/* Dynamic Background Images */
.has-dynamic-bg {
  background-image: var(--dynamic-bg-image) !important;
}
