:root {
  --deep-purple: #240046;
  --soft-lavender: #AF90E3;
  --lime-yellow: #D1DE54;
  --pale-lavender: #EFE8F8;
  --cream: #F9F5E9;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.container-xxl {
  max-width: 1600px !important;
}

.container-fluid {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Quattrocento', serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quando', serif;
  color: var(--deep-purple);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--pale-lavender);
}

::-webkit-scrollbar-thumb {
  background: var(--soft-lavender);
  border-radius: 3px;
}

.section-label {
  font-family: 'Quattrocento', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soft-lavender);
  display: block;
  margin-bottom: 0.5rem;
}
.text-dark {
  color: var(--text-dark) !important;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--deep-purple);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Quattrocento', serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--deep-purple);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}

.btn-primary-custom:hover::before {
  transform: scaleX(1);
}

.btn-primary-custom:hover {
  color: var(--deep-purple);
  border-color: var(--lime-yellow);
}

.btn-primary-custom span,
.btn-primary-custom i {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 32px;
  height: 32px;
  background: var(--lime-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-purple);
  font-size: 0.8rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.btn-primary-custom:hover .btn-arrow {
  background: var(--deep-purple);
  color: var(--white);
}

.section-pad {
  padding: 90px 0;
}

.section-pad-lg {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

.badge-pill {
  display: inline-block;
  border: 1.5px solid #c5c0e0;
  border-radius: 50px;
  font-family: 'Quattrocento', serif;
  font-weight: 700;
  color: var(--deep-purple);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--white);
}

.badge-pill--sm {
  padding: 0.35rem 1.2rem;
  font-size: 0.78rem;
}

.badge-pill--md {
  padding: 0.4rem 1.4rem;
  font-size: 0.82rem;
}

.badge-pill--lg {
  padding: 0.45rem 1.6rem;
  font-size: 0.88rem;
}

.heading-section {
  font-family: 'Quando', serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.heading-section--sm {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.heading-section--md {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.heading-section--lg {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.5rem;
}

.subtitle-section {
  font-size: 1rem;
  color: #777;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 0.5rem;
}

.card-base {
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-base:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(36, 0, 70, 0.08);
}

.card-title-base {
  font-family: 'Quando', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-purple);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.card-text-base {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill--primary {
  background: var(--deep-purple);
  color: var(--white);
  border-color: var(--deep-purple);
}

.btn-pill--primary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}

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

.btn-pill--outline:hover {
  background: var(--deep-purple);
  color: var(--white);
}

.btn-pill--sm {
  padding: 0.55rem 1.6rem;
  font-size: 0.92rem;
}

.btn-pill--md {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn-pill--lg {
  padding: 0.85rem 2.8rem;
  font-size: 1.05rem;
}

.btn-pill--icon {
  padding: 0.8rem 1rem 0.8rem 2rem;
  font-size: 1.05rem;
  gap: 0.8rem;
}

.btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-pill:hover .btn-icon-circle {
  background: rgba(255, 255, 255, 0.3);
}

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

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.overflow-clip {
  overflow: hidden;
}

.btn-pill:focus-visible,
.btn-hero-cta:focus-visible,
.btn-nav-cta:focus-visible,
.btn-cta-appointment:focus-visible,
.btn-health-checkup:focus-visible,
.btn-readmore:focus-visible,
.insight-card-link:focus-visible,
.therapy-card-link:focus-visible,
a:focus-visible {
  outline: 2px solid var(--deep-purple);
  outline-offset: 3px;
}

.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  z-index: 1000;
}

.navbar.scrolled {
  padding: 15px 0px;
  border-bottom-color: var(--pale-lavender);
  box-shadow: 0 2px 20px rgba(36, 0, 70, 0.07);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 0.5rem 1.15rem !important;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--lime-yellow);
  border-radius: 2px;
  transition: width var(--transition);
  margin: 2px auto 0;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--deep-purple) !important;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.8rem;
  background: var(--deep-purple);
  color: var(--white) !important;
  border: 2px solid var(--deep-purple);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-nav-cta:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.3rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
  padding-top: 90px;
  background: url(../img/home-banner-bg.png) no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  right: 0%;
  top: 20%;
  background: url('../img/bannerbg-icon02.png') no-repeat center / cover;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 530px;
  max-height: 850px;
  background-position: right;
  background-size: cover;
}

.hero-section::after {
  content: '';
  position: absolute;
  right: 42%;
  top: 15%;
  width: 280px;
  height: 240px;
  background: url('../img/bannerbg-icon01.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.min-vh-hero {
  min-height: calc(100vh - 90px);
  align-items: center;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
}

.hero-bg-lines line {
  stroke: #aaa;
  stroke-width: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  text-align: center;
}

.quote-open {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(5rem, 9vw, 8rem);
  color: #333333;
  line-height: normal;
  display: block;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: -20px;
}

.hero-title-small {
  font-family: 'Quando', serif;
  font-size: clamp(1rem, 3vw, 3rem);
  font-weight: 700;
  color: #333333;
  margin: 0;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title-big {
  font-family: 'Quando', serif;
  font-size: clamp(5rem, 6vw, 7rem);
  font-weight: 700;
  color: #333333;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0.1rem 0 0.8rem;
  text-transform: uppercase;
}

.hero-body-text {
  font-size: clamp(1.2rem, 2vw, 1.875rem);
  color: #333333;
  max-width: 100%;
  line-height: 1.75;
  margin-bottom: 0.3rem;
  position: relative;
  display: inline;
}

.quote-close {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(5rem, 9vw, 8rem);
  color: #333333;
  line-height: 0;
  display: block;
  font-weight: 700;
  position: absolute;
  right: -100px;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 5;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem 0.8rem 2rem;
  background: var(--deep-purple);
  color: var(--white);
  border: 2px solid var(--deep-purple);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn-hero-cta:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}

.btn-hero-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-hero-cta:hover .btn-hero-icon {
  background: rgba(255, 255, 255, 0.3);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 2rem 0;
  z-index: 99;
}

.photo-circle {
  position: relative;
  z-index: 3;
  width: 600px;
  height: 600px;
  max-width: 100%;
  border-radius: 50%;
  border: 50px solid var(--white);
  box-shadow: 0 16px 50px rgba(36, 0, 70, 0.16);
  background: #AF90E3;
  aspect-ratio: 1;
}

.photo-circle img {
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
  position: absolute;
  bottom: -2px;
}

.name-badge {
  position: absolute;
  bottom: 40px;
  left: 50%;
  background: var(--soft-lavender);
  color: var(--white);
  font-family: 'Quando', serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(36, 0, 70, 0.12);
  transform: translateX(-50%) !important;
}

.therapies-section {
  padding: 50px 0 50px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.therapies-deco-triangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 240px 240px 0;
  border-color: transparent var(--lime-yellow) transparent transparent;
  opacity: 0.5;
  z-index: 0;
}

.head-badge {
  display: inline-block;
  padding: 0.4rem 1.4rem;
  border: 1.5px solid #200649;
  border-radius: 50px;
  font-family: 'Quattrocento', serif;
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--deep-purple);
  letter-spacing: 0.06em;
  background: transparent;
  margin-bottom: 10px;
}

.therapies-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.therapies-subtitle {
  font-size: 1rem;
  color: #777;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.therapy-card {
  border-radius: 20px;
  padding: 1.5rem 1.4rem 1.8rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(36, 0, 70, 0.1);
}

.therapy-card--lime {
  background: #D1DE54;
}

.therapy-card--lavender {
  background: #E9D3FF;
}

.therapy-card--cream {
  background: #F9F5E9;
}

.therapy-card--pale {
  background: #EFE8F8;
}

.therapy-card-img {
  width: 100%;
  height: 160px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapy-card-img svg {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.therapy-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.therapy-card-title {
  font-family: 'Quando', serif;
  font-size: 1.15rem;
  color: var(--deep-purple);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-weight: 700;
}

.therapy-card-text {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.therapy-card-link {
  font-family: 'Quattrocento', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-purple);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  align-items: center;
  gap: 0.3rem;
}

.therapy-card-link:hover {
  color: var(--soft-lavender);
}

.btn-readmore {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid var(--text-dark);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-readmore:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-readmore:hover {
  background: var(--deep-purple);
  border-color: var(--deep-purple);
  color: var(--white);
}

.home-about-section {
  padding: 0;
  background: #fff;
  position: relative;
}

.home-about-card {
  background: linear-gradient(to top, #e0d4f5, #ede7f6 40%, #f7f4fb 70%, #ffffff);
  padding: 3rem 0;
  position: relative;
}

.home-about-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: 30px;
  width: 290px;
  height: 320px;
  background: url('../img/home-about-before.png') no-repeat center / contain;
  opacity: inherit;
  pointer-events: none;
  z-index: 1;
  transform: rotate(46deg);
}

.home-about-img-wrap::after {
  content: '';
  position: absolute;
  top: 17%;
  left: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 90px;
  background: url('../img/home-about-img-after.png') no-repeat center / contain;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.home-about-img-wrap {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 2;
}

.home-about-img {
  width: 100%;
  height: auto;
  display: block;
}

.home-about-content {
  padding: 1.5rem 2rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

.home-about-text {
  font-size: 1.08rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 600px;
}

.home-insight-section {
  padding: 90px 0;
  background: linear-gradient(to top, #faf6ec, #f5eedc 40%, #faf6ec 70%, #ffffff);
  position: relative;
}

.insight-subtitle {
  font-size: 1rem;
  color: #777;
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.insight-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(36, 0, 70, 0.12);
}

.insight-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--pale-lavender);
}

.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insight-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-card-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  color: #999;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.insight-card-title {
  font-family: 'Quando', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.insight-card-text {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.insight-card-link {
  font-family: 'Quattrocento', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-purple);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.insight-card-link:hover {
  color: var(--lime-yellow);
}

.insight-card-link:hover::after {
  color: var(--lime-yellow);
}

.home-faq-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.faq-left-col {
  position: relative;
  z-index: 2;
}

.home-faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -43%;
  width: 100%;
  height: 1000px;
  background: url('../img/faq-before.png') no-repeat center / contain;
  opacity: inherit;
  pointer-events: none;
  z-index: 1;
  transform: rotate(20deg);
}

.faq-left {
  text-align: left;
  position: relative;
  display: block;
  z-index: 999;
}

.faq-img-wrap {
  text-align: left;
  padding: 0;
  margin-top: 0.5rem;
}

.faq-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  z-index: 999;
  position: relative;
}

.faq-accordion {
  border: none;
}

.faq-item {
  border: none;
  border-top: 1px solid #e0dce8;
  background: transparent;
  border-radius: 0 !important;
}

.faq-item:last-child {
  border-bottom: 1px solid #e0dce8;
}

.faq-btn {
  font-family: 'Quando', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  background: transparent !important;
  background-image: none !important;
  padding: 1.3rem 0;
  border: none;
  box-shadow: none !important;
  border-radius: 0 !important;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-btn:not(.collapsed) {
  color: #000;
  background: transparent !important;
  background-image: none !important;
}

.faq-btn:hover,
.faq-btn:focus {
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
}

.faq-btn::after {
  content: '+';
  background: none !important;
  background-image: none !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #000;
  width: auto;
  height: auto;
  line-height: 1;
  flex-shrink: 0;
  transform: none;
  transition: none;
}

.faq-btn:not(.collapsed)::after {
  content: '\2212';
  transform: none;
  background: none !important;
  background-image: none !important;
}

.faq-body {
  font-family: 'Quattrocento', serif;
  font-size: 0.98rem;
  color: #666;
  line-height: 1.75;
  padding: 0 2.5rem 1.4rem 0;
}

.health-checkup-section {
  padding: 0;
  background: #fff;
}

.health-checkup-inner {
  background: #D1DE54;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.health-checkup-inner::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -30px;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: url('../img/home-health-before.png') no-repeat center / contain;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.health-checkup-inner::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -30px;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: url('../img/home-health-after.png') no-repeat center / contain;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.health-checkup-content {
  position: relative;
  z-index: 1;
}

.health-checkup-text {
  font-family: 'Quattrocento', serif;
  font-size: 1.08rem;
  color: var(--text-dark);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.btn-health-checkup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem 0.8rem 2rem;
  background: var(--deep-purple);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--deep-purple);
}

.btn-health-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-health-checkup:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}

.btn-health-checkup:hover .btn-health-icon {
  background: rgba(255, 255, 255, 0.3);
}

.home-testimonial-section {
  padding: 90px 0 0;
  background: #f1efff;
  position: relative;
  overflow: hidden;
}

.testimonial-subtitle {
  font-size: 1rem;
  color: #777;
  max-width: 700px;
  line-height: 1.75;
}

.testimonial-slider-wrap {
  position: relative;
  padding: 0 50px;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(36, 0, 70, 0.1);
}

.testimonial-stars {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars i {
  color: #f5a623;
  font-size: 0.9rem;
}

.testimonial-quote {
  font-family: 'Quattrocento', serif;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pale-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--deep-purple);
  font-size: 0.9rem;
}

.testimonial-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.testimonialSwiper .swiper-slide {
  height: auto;
}

.testimonial-pagination {
  margin-top: 2rem;
  position: relative;
  bottom: auto;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c5c0e0;
  opacity: 1;
  transition: var(--transition);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--deep-purple);
  width: 28px;
  border-radius: 5px;
}

.testimonial-nav-prev,
.testimonial-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--deep-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  font-size: 0.85rem;
  transition: var(--transition);
}

.testimonial-nav-prev:hover,
.testimonial-nav-next:hover {
  background: var(--deep-purple);
  color: #fff;
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

.cta-footer-wrap {
  background: #F1EFFF;
  background: linear-gradient(180deg, rgba(241, 239, 255, 1) 0%, rgba(236, 228, 254, 1) 50%, rgba(217, 194, 255, 1) 100%);
  padding: 0 0 30px;
  position: relative;
}

.cta-appointment-card {
  background: transparent;
  border-radius: 28px;
  padding: 2.5rem 2.5rem 0;
  position: relative;
}

.cta-footer-wrap::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -90px;
  right: 0;
  height: 14px;
  background: url('../img/arrow-icon.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 3;
  width: 250px;
  height: 250px;
}

.cta-deco-arrows {
  position: absolute;
  top: 30px;
  left: 35px;
  z-index: 1;
  opacity: 0.55;
}

.cta-appointment-content {
  padding: 1rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

.cta-appointment-heading {
  font-family: 'Quando', serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.cta-heading-line1 {
  display: block;
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 500;
  margin-bottom: 10px;
}

.cta-heading-line2 {
  display: block;
  font-size: clamp(1.6rem, 3vw, 4.2rem);
  color: #555;
  font-weight: 500;
}

.cta-appointment-text {
  font-family: 'Quattrocento', serif;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.75;
  max-width: 90%;
  margin-bottom: 2rem;
}

.btn-cta-appointment {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.65rem 0.65rem 1.6rem;
  background: var(--deep-purple);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--deep-purple);
}

.btn-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  transition: var(--transition);
}

.btn-cta-appointment:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-cta-appointment:hover .btn-cta-icon {
  background: rgba(255, 255, 255, 0.25);
}

.cta-appointment-img-wrap {
  text-align: right;
  position: relative;
  z-index: 2;
  align-self: flex-end;
}

.cta-appointment-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: -15%;
  height: 14px;
  background: url('../img/appointent-icon.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 3;
  width: 250px;
  height: 250px;
  animation: rotateLoop 10s linear infinite !important;
}

@keyframes rotateLoop {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-appointment-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-left: auto;
  z-index: 99;
  position: relative;
}

#site-footer {
  background: #fff;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  padding: 50px 40px 0;
  border-radius: 28px;
  margin-top: 30px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.06);
}

.footer-top-row {
  padding-bottom: 1.5rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-about-text {
  font-family: 'Quattrocento', serif;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
  max-width: 70%;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: 'Quattrocento', serif;
  font-size: 0.92rem;
  color: #555;
  transition: var(--transition);
}

.footer-contact-item i {
  color: var(--deep-purple);
  font-size: 0.85rem;
}

.footer-contact-item:hover {
  color: var(--deep-purple);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep-purple);
  color: #fff;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--lime-yellow);
  color: var(--deep-purple);
}

.footer-bottom {
  border-top: 1px solid #e8e4f0;
  padding: 1rem 0;
  margin-top: 0.5rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copyright {
  font-family: 'Quattrocento', serif;
  font-size: 0.82rem;
  color: #aaa;
  margin: 0;
}

.footer-copyright a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

.footer-copyright a:hover {
  color: #240046 !important;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-family: 'Quattrocento', serif;
  font-size: 0.9rem;
  color: #240046;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.footer-bottom-links a:hover {
  color: var(--deep-purple);
}

#why {
  padding: 100px 0;
  background: var(--pale-lavender);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(209, 222, 84, 0.12);
  pointer-events: none;
}

.section-title {
  font-family: 'Quando', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--deep-purple);
  margin-bottom: 1rem;
}

.divider-line {
  width: 60px;
  height: 4px;
  background: var(--lime-yellow);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(36, 0, 70, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lime-yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(36, 0, 70, 0.12);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--pale-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
  color: var(--deep-purple);
  transition: background var(--transition);
}

.why-card:hover .why-icon {
  background: var(--soft-lavender);
}

.why-card h5 {
  font-family: 'Quando', serif;
  font-size: 1.05rem;
  color: var(--deep-purple);
  margin-bottom: 0.7rem;
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

#services {
  padding: 100px 0;
  background: var(--white);
}

.service-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--deep-purple);
  border-color: var(--deep-purple);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(36, 0, 70, 0.2);
}

.service-card:hover h5,
.service-card:hover p {
  color: var(--white);
}

.service-num {
  font-family: 'Quando', serif;
  font-size: 3.5rem;
  color: rgba(36, 0, 70, 0.08);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: rgba(255, 255, 255, 0.12);
}

.service-card h5 {
  font-family: 'Quando', serif;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  transition: color var(--transition);
}

.service-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--soft-lavender);
  color: var(--deep-purple);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1.2rem;
  transition: var(--transition);
}

.service-card:hover .service-tag {
  background: var(--lime-yellow);
}

#about {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
  display: inline-block;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 30px 30px 30px 80px;
  box-shadow: 0 16px 48px rgba(36, 0, 70, 0.15);
  background: var(--soft-lavender);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-purple);
  font-size: 5rem;
  opacity: 0.5;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--lime-yellow);
  border-radius: 20px;
  z-index: -1;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: 'Quando', serif;
  font-size: 2.2rem;
  color: var(--deep-purple);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #555;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(36, 0, 70, 0.06);
}

.credentials-list li i {
  color: var(--lime-yellow);
  font-size: 1rem;
  background: var(--pale-lavender);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#testimonials {
  padding: 100px 0;
  background: var(--deep-purple);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(185, 177, 255, 0.06);
}

#testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(209, 222, 84, 0.06);
}

#testimonials .section-label {
  color: var(--soft-lavender);
}

#testimonials .section-title {
  color: var(--white);
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  height: 100%;
}

.testi-card:hover {
  background: rgba(185, 177, 255, 0.12);
  border-color: rgba(185, 177, 255, 0.25);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--lime-yellow);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testi-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--soft-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quando', serif;
  font-size: 1rem;
  color: var(--deep-purple);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Quando', serif;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.testi-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

#faq {
  padding: 100px 0;
  background: var(--pale-lavender);
}

.accordion-item {
  border: none;
  background: var(--white);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-bottom: 1px solid #d5d5d5 !important;
}

.accordion-button {
  font-family: 'Quando', serif;
  font-size: 1.3rem;
  color: var(--deep-purple);
  background: var(--white);
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--deep-purple);
  color: var(--text-dark);
}

.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23240046'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  padding: 1rem 1.5rem 1.2rem;
  background: var(--white);
}

#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--deep-purple) 0%, #3d0080 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3e%3ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3e%3c/svg%3e");
}

#cta-banner .section-title {
  color: var(--white);
}

#cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-family: 'Quattrocento', serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

footer {
  background: #160028;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: 'Quando', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

footer p {
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Quando', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--lime-yellow);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '→';
  color: var(--lime-yellow);
  font-size: 0.7rem;
}

.footer-links a:hover {
  color: var(--lime-yellow);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--lime-yellow);
  border-color: var(--lime-yellow);
  color: var(--deep-purple);
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float-x {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes drift-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes drift-diag {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(4px, -5px);
  }
}

@keyframes drift-down {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes gentle-sway {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(1.5deg);
  }
}

.float-anim {
  animation: float-y 4s ease-in-out infinite;
}

.float-anim-x {
  animation: float-x 5s ease-in-out infinite;
}

.hero-dot-1 {
  animation: float-y 3s ease-in-out infinite;
}

.hero-dot-2 {
  animation: float-y 4.2s ease-in-out infinite 0.5s;
}

.hero-dot-3 {
  animation: float-x 3.8s ease-in-out infinite 0.3s;
}

.hero-section::after {
  animation: drift-diag 8s ease-in-out infinite;
}

.home-about-card::before {
  animation: drift-diag 9s ease-in-out infinite;
}

.home-about-img-wrap::after {
  animation: drift-up 8s ease-in-out infinite 1s;
}

.home-faq-section::before {
  animation: drift-down 10s ease-in-out infinite;
}

.health-checkup-inner::before {
  animation: gentle-sway 11s ease-in-out infinite;
}

.health-checkup-inner::after {
  animation: gentle-sway 13s ease-in-out infinite 2s;
}

.cta-footer-wrap::before {
  animation: drift-up 9s ease-in-out infinite;
}

.cta-appointment-img-wrap::before {
  animation: drift-diag 10s ease-in-out infinite 1s;
}

.therapy-card,
.insight-card,
.why-card,
.testi-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.therapy-card:hover,
.insight-card:hover,
.why-card:hover,
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(36, 0, 70, 0.08);
}

.faq-item {
  transition: box-shadow 0.35s ease;
}

.faq-item:hover {
  box-shadow: 0 3px 14px rgba(36, 0, 70, 0.05);
}

.btn-hero-cta,
.btn-nav-cta,
.btn-cta-appointment,
.insight-card-link,
.therapy-card-link {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-hero-cta:hover,
.btn-nav-cta:hover,
.btn-cta-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(36, 0, 70, 0.12);
}

.footer-social a {
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(36, 0, 70, 0.12);
}

.photo-circle {
  transition: box-shadow 0.5s ease;
}

.photo-circle:hover {
  box-shadow: 0 18px 55px rgba(36, 0, 70, 0.2);
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.home-faq-section,
.home-insight-section,
.cta-footer-wrap,
#why,
#services,
#about,
#faq,
#cta-banner {
  overflow: hidden;
}

.blog-banner {
  /* min-height: 85vh; */
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
  padding-top: 90px;
  overflow: hidden;
  min-height: 650px;

}

.grecaptcha-badge {
  z-index: 1;
}

s .blog-banner::before {
  content: '';
  position: absolute;
  top: 100px;
  left: -10px;
  width: 100%;
  max-width: 770px;
  height: 100%;
  background: url('../img/blog-banner-before.webp') no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  background-position: top;
  background-size: contain;
}

.blog-banner-row {
  align-items: center;
  min-height: calc(85vh - 90px);
}

.blog-banner-img-col {
  position: relative;
  z-index: 2;
}

.blog-banner-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%);
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pale-lavender);
  z-index: 0;
  pointer-events: none;
}

.blog-banner-illustration {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.blog-banner-illustration img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

.blog-banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  text-align: right;
}

.blog-banner-heading-wrap {
  position: relative;
}

.blog-banner-heading {
  font-family: 'Quando', serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.blog-banner-heading .blog-heading-highlight {
  color: var(--deep-purple);
}

.blog-banner-heading .blog-heading-regular {
  color: var(--text-dark);
}

.blog-banner-heading-line1 {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.blog-banner-heading-line2 {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.blog-banner-content-icon {
  display: block;
  width: 130px;
  height: auto;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  pointer-events: none;
  position: absolute;
  top: 59px;
  left: -40px;
}

.about-b-section .blog-banner-content-icon {
  left: auto;
  right: -40px;
  transform: scaleX(-1);
}

.blog-banner-subtitle {
  font-family: 'Quattrocento', serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #666;
  line-height: 1.75;
  max-width: 400px;
  margin-left: auto;
}

.blog-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 330px;
  height: 281px;
  background: url('../img/bannerbg-icon01.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  transform: rotate(300deg);
}

.blog-content-section {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #fdf6e8 40%, #faf0d8 100%);
}

.blog-card-grid {
  row-gap: 2.5rem;
  column-gap: 0;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

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

.blog-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  background: #f0eff5;
  overflow: visible;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card:hover .blog-card-img img {
  /* Removed scale transform for better performance */
}

.blog-card-tags {
  position: absolute;
  bottom: -15px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.blog-card-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid #E6E6E6;
  white-space: nowrap;
}

.blog-card-body {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.blog-card-title {
  font-family: 'Quando', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--deep-purple);
}

.blog-card-text {
  font-family: 'Quattrocento', serif;
  font-size: 1rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card-link:hover {
  color: var(--deep-purple);
}

.blog-card-link i {
  font-size: 0.935rem;
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(3px);
}

.blog-load-more {
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}

.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.blog-detail-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0dce8;
  background: #fff;
}

.blog-detail-author-info {
  display: flex;
  flex-direction: column;
}

.blog-detail-author-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.blog-detail-author-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
}

.blog-detail-featured-img {
  margin: 1.5rem 0 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.blog-detail-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  max-height: 500px;
  object-fit: cover;
}

.blog-detail-content {
  padding-top: 72px;
  padding-bottom: 40px;
  background: var(--white);
}

.blog-detail-content .blog-detail-article {
  padding-top: 2.5rem;
}

.blog-detail-article {
  max-width: 100%;
}

.blog-detail-title {
  font-family: 'Quando', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.blog-detail-intro {
  font-family: 'Quattrocento', serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-detail-divider {
  border: none;
  border-top: 1px solid #e0dce8;
  margin: 1.5rem 0 2rem;
}

.blog-detail-article p {
  font-family: 'Quattrocento', serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}

.blog-detail-article strong {
  color: var(--deep-purple);
  font-weight: 700;
}

.blog-detail-subtitle {
  font-family: 'Quando', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.blog-detail-inline-img {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.blog-detail-inline-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-b-section {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 242, 250, 1) 50%, rgba(239, 232, 248, 1) 100%);
  overflow: hidden;
  min-height: 650px;
}

.about-b-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 750px;
  background: url('../img/about-banner-before.png') no-repeat right top / auto 100%;
  pointer-events: none;
  z-index: 0;
  background-size: contain;
  transform: translateY(-40%);
}

.about-b-container {
  position: relative;
  z-index: 2;
}

.about-b-row {
  flex: 1;
  min-height: calc(100vh - 90px);
}

.about-b-text-col {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.about-b-label {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.8rem, 3vw, 2rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 0.1rem;
  line-height: 1.5;
}

.about-b-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.2rem;
}

.about-b-section::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  max-width: 680px;
  height: 100%;
  background: url('../img/about-banner-line.png') no-repeat left bottom / contain;
  pointer-events: none;
  z-index: 1;
}

.about-b-subtitle {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.78rem, 1.05vw, 1.3rem);
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 80%;
}

.about-b-img-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-b-img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
}

.about-b-bottom-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

.about-b-bottom-after {
  position: absolute;
  top: 40px;
  right: -5%;
  width: 100%;
  max-width: 450px;
  height: 400px;
  background: url('../img/about-bottom-after.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 4;
}

.about-intro-section {
  padding: 100px 0 80px;
  background: #fff;
}

.about-credentials-section {
  padding: 80px 0 100px;
  background: #faf9fd;
}

.tc-section {
  padding: 100px 0 110px;
  background: #fff;
  overflow: hidden;
}

.tc-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.tc-desc {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: #555;
  line-height: 1.85;
  max-width: 90%;
  margin-bottom: 0;
  text-align: right;
}

.tc-grid {
  display: grid;
  grid-template-columns: 1fr 440px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 20px;
  row-gap: 30px;
  margin-top: 0.5rem;
}

.tc-card {
  position: relative;
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-height: 130px;
}

.tc-card--lavender {
  grid-column: 1;
  grid-row: 1;
  background: url('../img/case-manage-card.png') no-repeat center / 100% 100%;
  border-radius: 0;
  overflow: visible;
}

.tc-card--lavender .tc-squiggle {
  display: none;
}

.tc-card--lime {
  background: #C5D96B;
  grid-column: 3;
  grid-row: 1;
}

.tc-card--lime::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -80px;
  width: 210px;
  height: 140px;
  background: url('../img/through-care-card-icon.png') no-repeat center / contain;
  pointer-events: none;
}

.tc-card--dark {
  background: #2D1A5E;
  grid-column: 1;
  grid-row: 2;
}

.tc-card--dark::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -80px;
  width: 210px;
  height: 140px;
  background: url('../img/through-care-card-icon.png') no-repeat center / contain;
  pointer-events: none;
}

.tc-card--dark .tc-stat-num,
.tc-card--dark .tc-stat-label {
  color: #fff;
}

.tc-card--cream {
  grid-column: 3;
  grid-row: 2;
  background: url('../img/client-satis-card.png') no-repeat center / 100% 100%;
  border-radius: 0;
  overflow: visible;
}

.tc-card--cream .tc-squiggle {
  display: none;
}

.tc-stat-num {
  display: block;
  font-family: 'Quando', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text-dark);
}

.tc-stat-label {
  display: block;
  font-family: 'Quattrocento', serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-dark);
  margin-top: 0.5rem;
  line-height: 1.35;
}

.tc-squiggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 60px;
  opacity: 0.65;
  pointer-events: none;
}

.tc-squiggle--br {
  top: auto;
  bottom: 18px;
  right: 18px;
}

.tc-center-img {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-center-img img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
}

.ft-section {
  position: relative;
  padding: 100px 0 90px;
  background: #F0EBE0;
  overflow: hidden;
}

.ft-block--img-left {
  position: relative;
}

.ft-block--img-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 100%;
  max-width: 65%;
  height: 100%;
  background-image: url('../img/why-did-i-start-left-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  pointer-events: none;
  z-index: 0;
}

.ft-block--img-right {
  position: relative;
}

.ft-block--img-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 100%;
  max-width: 65%;
  height: 100%;
  background-image: url('../img/why-did-i-start-right-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  pointer-events: none;
  z-index: 0;
}

.ft-header {
  max-width: 720px;
  margin: 0 auto 80px;
}

.ft-badge {
  display: inline-block;
  border: 1.5px solid #888;
  border-radius: 999px;
  padding: 0.22rem 1.1rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.ft-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ft-subtitle {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: #555;
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}

.ft-block {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 20px;
}

.ft-block:last-of-type {
  margin-bottom: 0;
}

.ft-img-col {
  flex: 0 0 46%;
}

.ft-blob-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-blob-wrap--left {
  border-radius: 52% 48% 58% 42% / 48% 52% 56% 44%;
}

.ft-blob-wrap--right {
  border-radius: 48% 52% 42% 58% / 52% 48% 44% 56%;
}

.ft-block-img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.ft-text-col {
  flex: 1;
}

.ft-block-heading {
  font-family: 'Quando', serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.ft-block-body {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: #555;
  line-height: 1.9;
}

.why-diff-section {
  padding: 100px 0 20px;
  background-color: #fff;
}

.why-diff-section-bg {
  background-image: url('../img/why-differ-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-diff-header {
  max-width: 680px;
  margin: 0 auto;
}

.why-diff-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.why-diff-subtitle {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: #555;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.why-diff-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  height: 100%;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
}

.why-diff-card--reverse {
  flex-direction: row-reverse;
}

.why-diff-card-img-wrap {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  background: #EBE5FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-diff-card-img {
  display: block;
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.why-diff-card-body {
  flex: 1;
}

.why-diff-card-title {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.why-diff-card-text {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.82rem, 0.9vw, 0.88rem);
  color: #666;
  line-height: 1.75;
  margin-bottom: 0;
}

.why-diff-section .why-diff-card {
  align-items: center;
}

.why-diff-section .why-diff-card-img-wrap {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  background: transparent;
  border-radius: 0;
}

.why-diff-section .why-diff-card-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.why-diff-section .why-diff-card-title {
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.why-diff-section .why-diff-card-text {
  font-size: clamp(0.88rem, 1vw, 0.96rem);
}

.eliminate-section {
  background: #fff;
  padding: 0px 0 60px;
}

.eliminate-card {
  background: #1E0646;
  border-radius: 20px;
  overflow: visible;
  position: relative;
}

.eliminate-content {
  padding: 3rem 2rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.eliminate-heading {
  font-family: 'Quattrocento', serif;
  font-size: clamp(2rem, 6.2vw, 4.1rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.eliminate-text {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.8rem, 0.92vw, 1.5rem);
  color: rgba(255, 255, 255, 1);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-weight: lighter !important;
}

.eliminate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  background: #fff;
  color: #1E0646;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.eliminate-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #1E0646;
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.eliminate-btn:hover {
  opacity: 0.85;
}

.eliminate-img-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  padding: 0;
}

.eliminate-img {
  display: block;
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
  padding-right: 2rem;
}

.therapy-b-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  background: #FFFFFF;
  overflow: hidden;
}

.therapy-b-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 750px;
  background: url('../img/about-banner-before.png') no-repeat right top / auto 100%;
  pointer-events: none;
  z-index: 0;
  background-size: contain;
  transform: translateY(-40%);
}

.therapy-b-container {
  position: relative;
  z-index: 2;
}

.therapy-b-row {
  flex: 1;
  min-height: calc(100vh - 90px);
  padding-bottom: 2rem;
}

.therapy-b-text-col {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.therapy-b-label {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.8rem, 3vw, 2rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 0.1rem;
  line-height: 1.5;
}

.therapy-b-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.2rem;
}

.therapy-banner-icon {
  display: block;
  width: 130px;
  height: auto;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  pointer-events: none;
  position: absolute;
  top: 59px;
  left: auto;
  right: -48px;
  transform: scaleX(-1);
}

.therapy-b-section::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -7%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: url('../img/banner-curve-icon.png') no-repeat left bottom / contain;
  pointer-events: none;
  z-index: 1;
}

.therapy-b-subtitle {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.78rem, 1.05vw, 1.3rem);
  color: #4a4a4a;
  line-height: 1.9;
  margin-bottom: 0;
  max-width: 80%;
}

.therapy-b-img-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.therapy-b-img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
}

.therapy-b-bottom-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

.online-therapy-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 242, 250, 1) 50%, rgba(239, 232, 248, 1) 100%);
  position: relative;
  overflow: hidden;
}

.online-therapy-section .therapies-heading {
  text-align: left;
}

.online-therapy-section .therapies-subtitle {
  text-align: left;
  margin: 0;
  max-width: 600px;
}

.online-therapy-section .head-badge {
  display: inline-block;
}

.ot-header {
  margin-bottom: 2.5rem;
}

.ot-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid #BEB7F4;
}

.ot-step-card:hover {
  box-shadow: 0 8px 30px rgba(45, 26, 94, 0.08);
}

.ot-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: 'Quando', serif;
  font-size: 1.5rem;
  color: var(--deep-purple);
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: #BEB7F4;
}

.ot-step-title {
  font-family: 'Quando', serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ot-step-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0;
}

.ot-step-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: url('../img/flower-icon.png') no-repeat center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.client-rights-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
}

.online-therapy-section::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -120px;
  width: 330px;
  height: 230px;
  background: url('../img/banner-curve-icon.png') no-repeat center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transform: rotate(115deg);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.sbt-section {
  padding: 80px 0 90px;
  background: #faf9fd;
  position: relative;
  overflow: hidden;
}

.sbt-card {
  background: #fff;
  border: 1px solid #e8e2f0;
  border-radius: 20px;
  padding: 2rem 1.8rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.sbt-card:hover {
  box-shadow: 0 8px 30px rgba(45, 26, 94, 0.07);
}

.sbt-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -140px;
  width: 100%;
  height: 100%;
  background: url('../img/specialized-card-icon.webp') no-repeat right top / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.sbt-card-img {
  position: relative;
  z-index: 1;
  height: 140px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.2rem;
}

.sbt-card-img img {
  max-height: 130px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.sbt-card-title {
  font-family: 'Quando', serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.sbt-card-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.sbt-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -60px;
  width: 160px;
  height: 160px;
  background: url('../img/about-banner-line.png') no-repeat center / contain;
  opacity: 0.2;
  pointer-events: none;
  transform: translateY(-50%);
}

.sbt-section::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: url('../img/about-banner-line.png') no-repeat center / contain;
  opacity: 0.15;
  pointer-events: none;
}

.client-rights .therapies-heading {
  color: var(--text-dark);
}

.client-rights .health-checkup-text {
  color: var(--text-dark);
}

.cr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cr-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.cr-list li .cr-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--deep-purple);
  margin-top: 7px;
}

.cr-list li strong {
  font-weight: 600;
}

.contact-section {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 50px;
  left: -5%;
  width: 800px;
  height: 800px;
  background: url('../img/contact-before.png') no-repeat top left / contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  top: 60%;
  right: -5%;
  transform: translateY(-50%) scaleX(-1);
  width: 900px;
  height: 900px;
  background: url('../img/contact-before.png') no-repeat center / contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(36, 0, 70, 0.08);
  position: relative;
  z-index: 1;
  padding: 40px;
}

.contact-info-col {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-heading {
  font-family: 'Quando', serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-desc {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  /* max-width: 440px; */
}

.contact-desc strong {
  color: var(--text-dark);
  font-weight: 700;
}

.contact-illustration {
  margin-top: auto;
  text-align: center;
}

.contact-illustration img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.contact-form-col {
  background: var(--deep-purple);
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
}

.contact-form-col::before {
  content: '';
  position: absolute;
  background: url('../img/ct-form-bg.webp') no-repeat center / contain;
  z-index: 0;
  width: 300px;
  height: 300px;
  bottom: -35px;
  left: 0px;
}

.contact-form-heading {
  font-family: 'Quando', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.contact-form-subtitle {
  font-family: 'Quattrocento', serif;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.contact-field {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 3rem 0 1rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
}

.contact-field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--deep-purple) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.contact-submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  background: #fff;
  color: var(--deep-purple);
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-contact-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--deep-purple);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  flex-shrink: 0;
}

html,
body {
  overflow-x: hidden;
}

.health-checkup-section {
  overflow: hidden;
}

.health-checkup-inner {
  overflow: hidden;
}

.cta-footer-wrap {
  overflow: hidden;
}

.about-b-section {
  overflow: hidden;
}

.tc-section {
  overflow: hidden;
}

.why-diff-section-bg {
  overflow: hidden;
}

.eliminate-section {
  overflow: hidden;
}

.therapy-b-section {
  overflow: hidden;
}

section.therapy-b-section .hero-cta-wrap {
  justify-content: start;
}

.online-therapy-section {
  overflow: hidden;
}

.sbt-section {
  overflow: hidden;
}

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

section {
  overflow-x: clip;
}

.blog-gallery img {
  border-radius: 20px;
}

.index-99 {
  z-index: 99;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


@media (min-width: 1200px) {
  .blog-banner-content {
    justify-content: flex-end;
    padding-right: 3rem;
  }
}

@media (max-width: 1600px) {
  .blog-banner::before {
    max-width: 675px;
    background-position: center;
  }
}

@media (max-width: 1599px) {
  .hero-section::before {
    top: 25%;
    max-width: 450px;
    max-height: 650px;
  }

  .about-b-section::before {
    max-height: 575px;
  }

  .about-b-img {
    max-width: 560px;
  }

  .hero-title-small {
    font-size: clamp(1rem, 2.75vw, 2.75rem);
  }

  .home-about-card::before {
    width: 230px;
    height: 230px;
  }
}

@media (max-width: 1399.98px) {
  .about-b-section .blog-banner-content-icon {
    right: 12px;
  }

  .about-b-img {
    max-width: 513px;
  }

  .blog-banner-content-icon {
    width: 120px;
    top: 44px;
  }

  .about-b-section::before {
    max-height: 530px;
  }

  .about-b-bottom-after {
    max-width: 353px;
  }

  .cta-footer-wrap::before {
    top: -50px;
    width: 220px;
    height: 180px;
  }

  .cta-appointment-card {
    padding: 2rem 2rem 0;
  }

  .footer-about-text {
    max-width: 80%;
  }

  .blog-banner-heading-line1 {
    font-size: 3.25rem;
  }

  .blog-banner-heading-line2 {
    font-size: 3.25rem;
  }

  .blog-banner::before {
    max-width: 550px;
  }

  .about-b-heading {
    font-size: 4rem;
  }

  .therapy-b-heading {
    font-size: 4rem;
  }

  .therapy-banner-icon {
    width: 120px;
    top: 44px;
  }

  .about-b-section::before {
    height: 100%;
    max-height: 550px;
  }

  .about-b-section::after {
    bottom: 40px;
    max-width: 430px;
  }

  .about-b-label {
    font-size: clamp(0.8rem, 3vw, 1.3rem);
  }

  .therapy-b-section::before {
    max-height: 600px;
  }

}

@media (max-width: 1299.98px) {
  .blog-banner-content-icon {
    width: 110px;
    top: 51px;
    right: -6px;
  }

  .therapy-banner-icon {
    width: 110px;
    top: 51px;
  }

  .hero-title-small {
    font-size: clamp(1rem, 2.75vw, 2.5rem);
  }

}

@media (max-width: 1199.98px) {
  .about-b-section .blog-banner-content-icon {
    right: 92px;
    top: 30px;
    width: 76px;
  }

  .about-b-img {
    max-width: 470px;
  }

  .brand-logo {
    height: 30px;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0.938rem !important;
  }

  .hero-section::before {
    display: none;
  }

  .hero-section::after {
    display: none;
  }

  .hero-image-wrapper {
    margin-top: 50px;
  }

  .photo-circle {
    width: 500px;
    height: 500px;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 700px;
  }

  .home-about-card::before {
    width: 160px;
    height: 250px;
  }

  .home-about-img {
    max-width: 500px;
    margin: 0 auto;
  }

  .home-faq-section::before {
    top: 30px;
    left: -45%;
    width: 100%;
    height: 770px;
  }

  .home-faq-section {
    overflow: hidden;
  }

  .health-checkup-inner::before {
    top: 30%;
    width: 230px;
    height: 230px;
  }

  .health-checkup-inner::after {
    top: 50%;
    width: 230px;
    height: 230px;
  }

  .cta-footer-wrap::before {
    top: -30px;
    width: 230px;
    height: 150px;
  }

  .cta-appointment-card {
    padding: 2rem 2rem 0;
  }

  .footer-about-text {
    max-width: 80%;
  }

  .blog-banner::before {
    max-width: 430px;
    background-position: center;
  }

  .blog-banner-heading-line1 {
    font-size: 2.75rem;
  }

  .blog-banner-heading-line2 {
    font-size: 2.75rem;
  }

  .blog-banner-content-icon {
    top: 43px;
    width: 100px;
    right: 70px;
  }

  .blog-banner::after {
    width: 230px;
  }

  .about-b-heading {
    font-size: 3rem;
  }

  .about-b-section::after {
    display: none;
  }

  .about-b-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }

  .about-b-img-col {
    text-align: center;
  }

  .about-b-bottom-after {
    display: none;
  }

  .about-b-section::before {
    height: 100%;
    max-height: 450px;
    top: 55%;
  }

  .tc-grid {
    grid-template-columns: 1fr 320px 1fr;
  }

  .tc-center-img img {
    max-width: 320px;
  }

  .eliminate-card>.row {
    flex-direction: column;
  }

  .eliminate-img-col {
    order: -1;
    justify-content: center;
    text-align: center;
  }

  .eliminate-img {
    max-width: 360px;
    margin: 0 auto;
    padding-right: 0;
  }

  .eliminate-content {
    text-align: center;
    align-items: center;
    padding: 2.5rem 2rem;
  }

  .eliminate-btn {
    align-self: center;
  }

  .eliminate-text {
    max-width: 100%;
  }

  .therapy-b-heading {
    font-size: 3.25rem;
  }

  .therapy-banner-icon {
    top: 43px;
    width: 100px;
  }

  .therapy-b-section::after {
    display: none;
  }

  .therapy-b-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }

  .therapy-b-img-col {
    text-align: center;
  }

  .therapy-b-section::before {
    height: 800px;
    top: 40%;
  }

  .contact-card {
    padding: 30px;
  }

  .contact-section::before {
    width: 600px;
    height: 600px;
  }

  .contact-section::after {
    width: 650px;
    height: 650px;
  }

  .blog-carousel .carousel-img {
    max-height: 400px;
  }

  .blog-gallery img {
    max-height: 400px;
  }
}

@media (max-width: 1155.98px) {
  .about-b-section .blog-banner-content-icon {
    right: 56px;
  }
}

@media (max-width: 1085.98px) {
  .about-b-section .blog-banner-content-icon {
    right: 8px;
  }
}

@media (max-width: 991.98px) {

  body.nav-open {
    overflow: hidden !important;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.nav-overlay-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }


  .about-b-section {
    height: auto;
  }


  .about-b-section::before {
    height: 100%;
    max-height: 629px !important;
    top: 55%;
  }

  .navbar,
  .navbar.scrolled {
    padding: 12px 0 !important;
  }

  .ft-block--img-right::before,
  .ft-block--img-left::before,
  .blog-banner-content-icon,
  .about-b-section .blog-banner-content-icon,
  .therapy-banner-icon {
    display: none;
  }

  .navbar-collapse,
  .navbar .collapsing {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 0 0 20px 20px !important;
    box-shadow: 0 8px 24px rgba(36, 0, 70, 0.1);
    margin-top: 18px;
    overflow: hidden;
    padding: 0px;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 1rem !important;
  }

  .btn-nav-cta {
    text-align: center;
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
    margin-bottom: 20px;
  }

  .hero-image-wrapper {
    min-height: 380px;
    margin-top: 6rem;
  }

  .photo-circle {
    width: 420px;
    height: 420px;
    border-width: 30px;
  }

  .name-badge {
    bottom: 25px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) !important;
    font-size: 1.1rem;
  }

  .quote-open {
    font-size: clamp(5rem, 7vw, 6rem);
    left: 75px;
    top: 10px;
  }

  .quote-close {
    font-size: clamp(5rem, 7vw, 6rem);
    right: -50px;
    bottom: -10px;
  }

  .hero-section::before {
    width: 400px;
    height: 450px;
    right: -40px;
  }

  .hero-section::after {
    width: 180px;
    height: 160px;
    right: 30%;
    top: 12%;
  }

  .section-pad {
    padding: 70px 0;
  }

  .section-pad-lg {
    padding: 80px 0;
  }

  .section-pad-sm {
    padding: 60px 0;
  }

  .therapies-deco-triangle {
    border-width: 0 150px 150px 0;
  }

  .home-about-card {
    padding: 2.5rem 0;
  }

  .home-about-content {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .home-about-img-wrap {
    margin-bottom: 0.5rem;
  }

  .home-about-card::before {
    display: none;
  }

  .home-about-card::after {
    width: 240px;
    height: 38px;
  }

  .home-about-text {
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .home-insight-section {
    padding: 70px 0;
  }

  .insight-card-img {
    height: 190px;
  }

  .home-faq-section {
    padding: 70px 0;
  }

  .home-faq-section::before {
    display: none;
  }

  .faq-left {
    text-align: center;
  }

  .faq-img-wrap {
    text-align: center;
    margin-bottom: 2rem;
  }

  .faq-img {
    max-width: 400px;
    display: inline-block;
  }

  .health-checkup-inner {
    padding: 65px 0;
  }

  .health-checkup-inner::before,
  .health-checkup-inner::after {
    display: none;
  }

  .home-testimonial-section {
    padding: 70px 0 20px;
  }

  .testimonial-slider-wrap {
    padding: 0 40px;
  }

  .cta-appointment-card {
    padding: 2.5rem 2rem 0;
    border-radius: 22px;
  }

  .cta-appointment-content {
    text-align: center;
    padding-bottom: 2rem;
  }

  .cta-appointment-text {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-appointment-img-wrap {
    text-align: center;
  }

  .cta-appointment-img {
    max-width: 380px;
    margin: 0 auto;
  }

  .cta-deco-arrows {
    display: none;
  }

  .cta-footer-wrap::before {
    width: 150px;
    height: 150px;
    left: -40px;
  }

  .cta-appointment-img-wrap::before {
    width: 200px;
    height: 200px;
    right: 50px;
  }

  #site-footer {
    padding: 35px 24px 0;
    margin-top: 40px;
    border-radius: 22px;
  }

  .footer-top-row {
    text-align: center;
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-about-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  .footer-contact-col {
    align-items: center;
  }

  .footer-contact-col .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  #why {
    padding: 70px 0;
  }

  #why::before {
    width: 200px;
    height: 200px;
  }

  .why-card {
    padding: 1.6rem 1.2rem;
  }

  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  #services {
    padding: 70px 0;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-num {
    font-size: 2.8rem;
  }

  #about {
    padding: 70px 0;
  }

  .about-photo {
    max-width: 100%;
    min-height: 360px;
    border-radius: 24px 24px 24px 60px;
  }

  .about-accent-box {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  #testimonials {
    padding: 70px 0;
  }

  .testi-card {
    padding: 1.6rem;
  }

  #faq {
    padding: 70px 0;
  }

  #cta-banner {
    padding: 65px 0;
  }

  .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .blog-banner {
    min-height: auto;
    padding-top: 80px;
  }

  .blog-banner-row {
    min-height: auto;
  }

  .blog-banner-blob {
    width: 75%;
  }

  .blog-banner-illustration {
    padding: 0;
  }

  .blog-banner-illustration img {
    max-width: 500px;
    padding: 0px;
  }

  .blog-banner-heading-line1,
  .blog-banner-heading-line2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .blog-banner-content-icon {
    width: 150px;
  }

  .blog-content-section {
    padding: 60px 0 40px;
  }

  .blog-card-grid {
    row-gap: 2rem;
  }

  .blog-banner::before {
    display: none;
  }

  .blog-content {
    text-align: center;
  }

  .blog-banner::after {
    right: -20px;
    width: 180px;
    height: 150px;
    opacity: 0.4;
  }

  .about-b-section {
    padding-top: 80px;
  }

  .about-b-section::before {
    background-size: auto 65%;
    background-position: right bottom;
    opacity: 0.6;
  }

  .about-b-text-col {
    text-align: center;
    padding-top: 1.5rem;
  }

  .about-b-row {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .about-b-subtitle {
    max-width: 100%;
  }

  .about-b-section::after {
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
  }

  .about-b-img {
    max-width: 500px;
  }

  .about-b-bottom-after {
    height: 70px;
  }

  .about-intro-section {
    padding: 70px 0 60px;
  }

  .about-credentials-section {
    padding: 60px 0 80px;
  }

  .tc-section .row {
    text-align: center;
  }

  .tc-heading {
    text-align: center;
  }

  .tc-desc {
    text-align: center !important;
    margin: 0 auto;
    max-width: 70%;
  }

  .tc-section {
    padding: 70px 0 80px;
  }

  .tc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px;
  }

  .tc-center-img {
    grid-column: 1 / 3;
    grid-row: 1;
    padding: 10px 0;
  }

  .tc-card--lavender {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: auto;
    min-height: 120px;
    padding: 1.2rem;
    overflow: hidden;
  }

  .tc-card--lime {
    grid-column: 2;
    grid-row: 2;
  }

  .tc-card--dark {
    grid-column: 1;
    grid-row: 3;
  }

  .tc-card--cream {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: auto;
    min-height: 120px;
    padding: 1.2rem;
    overflow: hidden;
  }

  .tc-center-img img {
    max-width: 280px;
  }

  .tc-card--lime::before,
  .tc-card--dark::before {
    top: -10px;
    right: -40px;
    width: 140px;
    height: 90px;
  }

  .tc-card--lavender,
  .tc-card--lime,
  .tc-card--dark,
  .tc-card--cream {
    border-radius: 22px;
    overflow: hidden;
    padding: 1.4rem 1.6rem;
    min-height: 130px;
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .tc-card--lavender {
    background: #D4C5EC;
    background-image: none;
  }

  .tc-card--cream {
    background: #F5EEDC;
    background-image: none;
  }

  .tc-card--lavender::before,
  .tc-card--lavender::after,
  .tc-card--lime::before,
  .tc-card--lime::after,
  .tc-card--dark::before,
  .tc-card--dark::after,
  .tc-card--cream::before,
  .tc-card--cream::after {
    display: none;
  }

  .tc-card--lavender .tc-squiggle,
  .tc-card--cream .tc-squiggle {
    display: none;
  }

  .ft-section {
    padding: 70px 0 65px;
  }

  .ft-header {
    margin-bottom: 56px;
  }

  .ft-block {
    gap: 40px;
    margin-bottom: 64px;
  }

  .ft-block--img-left,
  .ft-block--img-right {
    flex-direction: column;
    text-align: center;
  }

  .ft-block--img-left::before,
  .ft-block--img-right::before {
    width: 60%;
    max-width: 50%;
  }

  .ft-block--img-right .ft-img-col {
    order: 2;
  }

  .ft-block--img-right .ft-text-col {
    order: 1;
  }

  .ft-img-col {
    flex: none;
    width: 75%;
    max-width: 380px;
  }

  .ft-blob-wrap {
    padding: 2.8rem 2.2rem;
  }

  .why-diff-section {
    padding: 70px 0 25px;
  }

  .why-diff-header {
    margin-bottom: 40px;
  }

  .why-diff-section-bg {
    min-height: 500px;
    background-size: cover;
  }

  .why-diff-section .why-diff-card-img-wrap {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
  }

  .why-diff-section .why-diff-card-img {
    width: 118px;
    height: 118px;
  }

  .eliminate-section {
    padding: 70px 0 50px;
  }

  .eliminate-content {
    padding: 2.5rem 1.5rem 2.5rem 2rem;
  }

  .eliminate-img {
    max-width: 300px;
    margin-top: 0px;
    padding-right: 0.5rem;
  }

  .therapy-b-section {
    padding-top: 80px;
  }

  .therapy-b-section::before {
    background-size: auto 65%;
    background-position: right bottom;
    opacity: 0.6;
  }

  .therapy-b-text-col {
    text-align: center;
    padding-top: 1.5rem;
  }

  .therapy-b-row {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .therapy-b-subtitle {
    max-width: 100%;
    margin: 0 auto;
  }

  .therapy-b-section::after {
    display: none;
  }

  .therapy-b-img {
    max-width: 500px;
  }

  .online-therapy-section {
    padding: 60px 0 70px;
  }

  .online-therapy-section .therapies-heading {
    text-align: center;
  }

  .online-therapy-section .therapies-subtitle {
    text-align: center;
    margin: 0 auto;
  }

  .ot-header {
    text-align: center;
  }

  .online-therapy-section::after {
    display: none;
  }

  .sbt-section {
    padding: 60px 0 70px;
  }

  .sbt-card-img {
    height: 120px;
  }

  .sbt-card-img img {
    max-height: 110px;
  }

  .sbt-section::before,
  .sbt-section::after {
    display: none;
  }

  .sbt-card::after {
    width: 80%;
    right: -100px;
    opacity: 0.7;
  }

  .contact-section {
    padding-top: 90px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .contact-section::before,
  .contact-section::after {
    display: none;
  }

  .contact-card {
    padding: 0;
    border-radius: 20px;
  }

  .contact-info-col {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
  }

  .contact-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-illustration img {
    max-height: 250px;
  }

  .contact-form-col {
    border-radius: 0 0 20px 20px;
    padding: 2.5rem 2rem;
  }

  .contact-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .contact-form-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .contact-field {
    padding: 2rem 0 0.8rem;
  }

  .contact-submit-wrap {
    justify-content: center;
  }

  .disclaimer-banner {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .disclaimer-content {
    padding-top: 20px;
  }

  section.therapy-b-section .hero-cta-wrap {
    justify-content: center;
  }

  .blog-carousel .carousel-img {
    max-height: 350px;
  }

  .blog-gallery img {
    max-height: 350px;
  }

  .blog-detail-article p {
    font-size: 1rem;
  }

}

@media (max-width: 767.98px) {


  .hero-section {
    padding-top: 80px;
    text-align: center;
  }

  .min-vh-hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1rem 0;
  }

  .hero-title-small {
    font-size: clamp(1rem, 4vw, 3rem);
  }

  .hero-body-text {
    margin: 0 auto 0.5rem;
  }

  .hero-cta-wrap {
    justify-content: center;
  }

  .quote-open {
    font-size: clamp(4rem, 6vw, 4.5rem);
    left: 75px;
    top: 0px;
  }

  .quote-close {
    font-size: clamp(4rem, 6vw, 4.5rem);
    right: 11px;
    bottom: -65px;
  }

  .hero-image-wrapper {
    min-height: 300px;
  }

  .photo-circle {
    width: 350px;
    height: 350px;
    border-width: 20px;
    margin-top: 30px;
  }

  .name-badge {
    bottom: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) !important;
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
  }

  .hero-section::before {
    width: 250px;
    height: 300px;
    right: -30px;
    opacity: 0.5;
  }

  .hero-section::after {
    width: 120px;
    height: 100px;
    right: 15%;
    top: 10%;
    opacity: 0.5;
  }

  .therapies-section {
    padding: 60px 0 50px;
  }

  .therapies-deco-triangle {
    border-width: 0 100px 100px 0;
    opacity: 0.35;
  }

  .therapy-card-img {
    height: 130px;
  }

  .therapy-card {
    text-align: center;
  }

  .therapy-card-text {
    font-size: 0.88rem;
  }

  .therapy-card-link {
    font-size: 0.95rem;
  }

  .therapies-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .btn-readmore {
    font-size: 0.95rem;
    padding: 0.75rem 2.2rem;
  }

  .home-about-card {
    padding: 2rem 0;
  }

  .home-about-img-wrap {
    text-align: center;
  }

  .home-about-img {
    max-width: 550px;
    margin: 0 auto;
  }

  .home-about-text {
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .home-about-card::before {
    width: 100px;
    height: 120px;
    top: -15px;
    right: 5px;
    opacity: 0.4;
  }

  .home-about-card::after {
    width: 180px;
    height: 30px;
  }

  .home-insight-section {
    padding: 50px 0;
  }

  .insight-card-img {
    height: 200px;
  }

  .insight-card-title {
    font-size: 1.05rem;
  }

  .insight-card-text {
    font-size: 0.88rem;
  }

  .insight-card-link {
    font-size: 0.95rem;
  }

  .home-faq-section {
    padding: 50px 0;
  }

  .home-faq-section::before {
    display: none;
  }

  .faq-img {
    max-width: 350px;
  }

  .faq-btn {
    font-size: 1rem;
    padding: 1.1rem 2rem 1.1rem 0;
  }

  .faq-body {
    padding: 0 1rem 1.2rem 0;
  }

  .health-checkup-inner {
    padding: 50px 0;
  }

  .health-checkup-text {
    font-size: 0.9rem;
  }

  .btn-health-checkup {
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem 0.7rem 1.5rem;
  }

  .btn-health-icon {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .health-checkup-inner::before,
  .health-checkup-inner::after {
    display: none;
  }

  .home-testimonial-section {
    padding: 50px 0;
  }

  .testimonial-slider-wrap {
    padding: 0 0;
  }

  .testimonial-nav-prev,
  .testimonial-nav-next {
    display: flex;
  }

  .testimonial-card {
    padding: 1.6rem 1.4rem;
  }

  .testimonial-subtitle {
    font-size: 0.9rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .cta-footer-wrap {
    padding: 20px 0;
  }

  .cta-footer-wrap::before {
    display: none;
  }

  .cta-appointment-card {
    padding: 2rem 1.5rem 0;
    border-radius: 18px;
  }

  .cta-appointment-card::after {
    display: none;
  }

  .cta-appointment-img {
    max-width: 300px;
  }

  .cta-heading-line1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .cta-heading-line2 {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }

  .cta-appointment-text {
    font-size: 0.9rem;
    width: 100%;
  }

  .btn-cta-appointment {
    font-size: 0.88rem;
    padding: 0.6rem 0.6rem 0.6rem 1.3rem;
  }

  .cta-appointment-img-wrap::before {
    display: none;
  }

  #site-footer {
    padding: 30px 16px 0;
    margin-top: 30px;
    border-radius: 18px;
  }

  .footer-contact-col {
    align-items: center;
    gap: 1rem;
  }

  .footer-contact-col .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-inner {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-logo-img {
    height: 38px;
  }

  .footer-about-text {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .section-pad {
    padding: 50px 0;
  }

  .section-pad-lg {
    padding: 60px 0;
  }

  .section-pad-sm {
    padding: 45px 0;
  }

  .about-accent-box {
    display: none;
  }

  .about-stats {
    justify-content: center;
  }

  .divider-line {
    margin: 0 auto 1.5rem;
  }

  #about {
    padding: 50px 0;
    text-align: center;
  }

  .about-image-wrap {
    margin-bottom: 2rem;
    display: block;
    text-align: center;
  }

  .about-photo {
    max-width: 320px;
    min-height: 300px;
    margin: 0 auto;
    border-radius: 20px 20px 20px 50px;
  }

  .about-stats {
    justify-content: center;
    gap: 1.5rem;
  }

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

  .credentials-list li {
    justify-content: center;
  }

  #why {
    padding: 50px 0;
  }

  #why::before {
    display: none;
  }

  .why-card {
    padding: 1.5rem 1rem;
  }

  .why-card h5 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.88rem;
  }

  #services {
    padding: 50px 0;
  }

  .service-card {
    padding: 1.8rem 1.3rem;
    border-radius: 20px;
  }

  .service-num {
    font-size: 2.4rem;
  }

  .service-card h5 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  #testimonials {
    padding: 50px 0;
  }

  .testi-card {
    padding: 1.4rem;
    border-radius: 18px;
  }

  .testi-quote {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .testi-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .testi-name {
    font-size: 0.85rem;
  }

  #faq {
    padding: 50px 0;
  }

  .accordion-button {
    font-size: 0.92rem;
    padding: 1rem 1.2rem;
  }

  .accordion-body {
    padding: 0.8rem 1.2rem 1rem;
    font-size: 0.88rem;
  }

  #cta-banner {
    padding: 50px 0;
  }

  #cta-banner .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  #cta-banner p {
    font-size: 0.9rem;
  }

  .btn-cta-outline {
    padding: 0.75rem 1.6rem;
    font-size: 0.88rem;
  }

  .blog-detail-content {
    padding-top: 65px;
    padding-bottom: 30px;
  }

  .blog-detail-content .blog-detail-article {
    padding-top: 1.8rem;
  }

  .blog-detail-author-img {
    width: 36px;
    height: 36px;
  }

  .blog-detail-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .blog-banner {
    padding-top: 75px;
    padding-bottom: 2rem;
  }

  .blog-banner-content {
    order: 2;
    padding: 1rem 0.5rem;
    justify-content: center;
  }

  .blog-content {
    text-align: center;
  }

  .blog-banner-blob {
    width: 80%;
  }

  .blog-banner-illustration img {
    max-width: 400px;
  }

  .blog-banner-heading-line1,
  .blog-banner-heading-line2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .blog-banner-content-icon {
    width: 120px;
    top: 30px;
  }

  .blog-banner-subtitle {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-banner::after {
    width: 120px;
    height: 100px;
    bottom: -10px;
    right: -10px;
    opacity: 0.5;
  }

  .blog-content-section {
    padding: 50px 0 30px;
  }

  .blog-card-img {
    height: 170px;
  }

  .blog-card-grid {
    row-gap: 1.8rem;
  }

  .about-b-section {
    padding-top: 75px;
  }

  .about-b-heading {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
  }

  .about-b-img {
    max-width: 500px;
  }

  .about-b-section::after {
    width: 190px;
  }

  .about-b-bottom-after {
    height: 55px;
    width: 92%;
  }

  .about-intro-section {
    padding: 60px 0 50px;
  }

  .about-credentials-section {
    padding: 50px 0 60px;
  }

  .tc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .tc-center-img img {
    max-width: 220px;
  }

  .tc-card {
    min-height: 110px;
    padding: 1rem 1.2rem;
  }

  .tc-card--lavender,
  .tc-card--cream {
    min-height: 110px;
    padding: 1rem 1.2rem;
  }

  .tc-stat-num {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .tc-stat-label {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  }

  .tc-card--lime::before,
  .tc-card--dark::before {
    top: -8px;
    right: -30px;
    width: 100px;
    height: 65px;
  }

  .ft-block--img-left::before,
  .ft-block--img-right::before {
    width: 50%;
    opacity: 0.5;
  }

  .ft-block {
    gap: 32px;
    margin-bottom: 56px;
  }

  .ft-img-col {
    width: 88%;
  }

  .why-diff-card,
  .why-diff-card--reverse {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .why-diff-card-img-wrap {
    flex: none;
    margin: 0 auto;
  }

  .why-diff-section-bg {
    min-height: auto;
    padding: 40px 0;
    background-size: cover;
  }

  .why-diff-section .why-diff-card {
    align-items: center;
  }

  .eliminate-section {
    padding: 50px 0 40px;
  }

  .eliminate-card {
    border-radius: 16px;
  }

  .eliminate-content {
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    align-items: center;
  }

  .eliminate-btn {
    align-self: auto;
  }

  .eliminate-text {
    max-width: 100%;
  }

  .eliminate-img-col {
    justify-content: center;
  }

  .eliminate-img {
    max-width: 260px;
    margin-top: 0;
    padding: 0 0 2rem;
  }

  .therapy-b-section {
    padding-top: 75px;
  }

  .therapy-b-heading {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
  }

  .therapy-b-img {
    max-width: 500px;
  }

  .therapy-b-section::after {
    width: 190px;
  }

  .cr-list li {
    font-size: 0.85rem;
  }

  .client-rights-card {
    padding: 20px 14px;
  }

  .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .online-therapy-section {
    padding: 50px 0 60px;
  }

  .ot-step-card::after {
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
  }

  .sbt-section {
    padding: 50px 0 60px;
  }

  .sbt-card::after {
    width: 60%;
    right: -60px;
    top: -40px;
    opacity: 0.5;
  }

  .sbt-card-title {
    font-size: 1rem;
  }

  .sbt-card-text {
    font-size: 0.82rem;
  }

  .contact-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .contact-info-col {
    padding: 2rem 1.5rem 1rem;
  }

  .contact-heading {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .contact-desc {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.6;
  }

  .contact-illustration img {
    max-height: 200px;
  }

  .contact-form-col {
    padding: 2rem 1.5rem;
  }

  .contact-form-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .contact-field {
    padding: 1.5rem 0 0.6rem;
  }


  /* .btn-contact-submit {
    width: 100%;
    justify-content: center;
  } */

  .disclaimer-banner {
    padding-top: 100px;
    padding-bottom: 36px;
  }

  .disclaimer-content {
    padding-top: 10px;
  }

  .disclaimer-block {
    padding: 1.8rem 0;
  }

  .disclaimer-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .faq-img-wrap {
    margin-bottom: 10px;
  }

  .blog-carousel .carousel-img {
    height: 350px;
  }

  .blog-carousel .carousel-img {
    max-height: 300px;
  }

  .blog-gallery img {
    max-height: 300px;
  }

  .tc-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {

  .hero-title-big {
    font-size: 2.6rem;
  }

  .hero-title-small {
    font-size: 0.95rem;
  }

  .quote-open {
    font-size: 2.8rem;
    left: 88px;
  }

  .quote-close {
    font-size: 3rem;
    right: 11px;
    bottom: -80px;
  }

  .photo-circle {
    width: 300px;
    height: 300px;
    border-width: 14px;
    margin-top: 60px;
  }

  .name-badge {
    bottom: 10px;
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
  }

  .hero-section::before {
    width: 160px;
    height: 200px;
    opacity: 0.35;
  }

  .hero-section::after {
    display: none;
  }

  .hero-image-wrapper {
    overflow: hidden;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 24px rgba(36, 0, 70, 0.1);
  }

  .btn-hero-cta {
    padding: 0.7rem 0.7rem 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  .btn-hero-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .therapies-section {
    padding: 50px 0 40px;
  }

  .therapies-heading {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .therapies-subtitle {
    font-size: 0.9rem;
  }

  .therapy-card-img {
    height: 110px;
  }

  .therapy-card-img img {
    max-height: 100px;
  }

  .home-about-card {
    padding: 1.5rem 0;
  }

  .home-about-card::before {
    display: none;
  }

  .home-about-card::after {
    display: none;
  }

  .home-about-img {
    max-width: 100%;
    width: 100%;
  }

  .home-about-img-wrap {
    overflow: hidden;
  }

  .home-about-text {
    font-size: 0.88rem;
  }

  .btn-readmore {
    font-size: 0.88rem;
    padding: 0.65rem 1.8rem;
  }

  .insight-card-img {
    height: 180px;
  }

  .insight-subtitle {
    font-size: 0.9rem;
  }

  .faq-btn {
    font-size: 0.92rem;
    padding: 1rem 1.5rem 1rem 0;
  }

  .faq-body {
    padding: 0 0.8rem 1rem 0;
    font-size: 0.88rem;
  }

  .faq-img {
    max-width: 270px;
  }

  .health-checkup-inner {
    padding: 40px 0;
  }

  .health-checkup-text {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .btn-health-checkup {
    font-size: 0.88rem;
    padding: 0.65rem 0.7rem 0.65rem 1.3rem;
  }

  .btn-health-icon {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .home-testimonial-section {
    padding: 40px 0;
  }

  .testimonial-card {
    padding: 1.3rem 1.1rem;
    border-radius: 16px;
    word-break: break-word;
  }

  .testimonial-quote {
    font-size: 0.82rem;
  }

  .testimonial-pagination {
    margin-top: 1.5rem;
  }

  .cta-footer-wrap {
    padding: 20px 0;
  }

  .cta-appointment-card {
    padding: 1.5rem 1rem 0;
    border-radius: 16px;
  }

  .cta-appointment-img {
    max-width: 240px;
  }

  .cta-heading-line1 {
    font-size: clamp(2rem, 5vw, 1.8rem);
  }

  .cta-heading-line2 {
    font-size: clamp(1rem, 3vw, 1.3rem);
  }

  .btn-cta-appointment {
    font-size: 0.82rem;
  }

  .btn-cta-icon {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .cta-appointment-heading {
    word-break: break-word;
  }

  .cta-appointment-content {
    padding: 1.2rem 0.5rem 1.5rem;
  }

  #site-footer {
    padding: 24px 12px 0;
    margin-top: 24px;
    border-radius: 16px;
  }

  .footer-logo-img {
    height: 32px;
  }

  .footer-about-text {
    font-size: 0.82rem;
  }

  .footer-contact-item {
    font-size: 0.8rem;
    margin-left: 0 !important;
  }

  .footer-bottom-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-links a {
    font-size: 0.78rem;
  }

  .footer-copyright {
    font-size: 0.78rem;
  }

  .footer-contact-col .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-bottom-inner {
    padding: 1rem 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .btn-pill--lg {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

  .btn-pill--icon {
    padding: 0.7rem 0.8rem 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-icon-circle {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  #why {
    padding: 40px 0;
  }

  .why-card {
    padding: 1.3rem 1rem;
    border-radius: 16px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  #services {
    padding: 40px 0;
  }

  .service-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .service-num {
    font-size: 2rem;
  }

  .service-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
  }

  .about-photo {
    max-width: 260px;
    min-height: 250px;
    font-size: 3.5rem;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .credentials-list li {
    font-size: 0.85rem;
  }

  #testimonials {
    padding: 40px 0;
  }

  .testi-card {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .testi-quote {
    font-size: 0.85rem;
  }

  #faq {
    padding: 40px 0;
  }

  .accordion-button {
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
  }

  .accordion-body {
    padding: 0.7rem 1rem 0.9rem;
    font-size: 0.85rem;
  }

  #cta-banner {
    padding: 40px 0;
  }

  .btn-cta-outline {
    padding: 0.65rem 1.3rem;
    font-size: 0.82rem;
  }

  .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .blog-detail-content {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .blog-detail-content .blog-detail-article {
    padding-top: 1.5rem;
  }

  .blog-detail-article p {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .blog-detail-inline-img {
    margin: 1.5rem 0;
  }

  .blog-detail-featured-img img {
    max-height: 280px;
  }

  .blog-banner {
    padding-top: 70px;
  }

  .blog-banner-illustration {
    padding: 1rem 0;
  }

  .blog-banner-illustration img {
    max-width: 300px;
  }

  .blog-banner-heading-line1,
  .blog-banner-heading-line2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .blog-banner-content-icon {
    width: 100px;
    position: relative;
    top: auto;
    left: auto;
    margin: 0.5rem auto;
  }

  .blog-banner-subtitle {
    font-size: 0.88rem;
    margin: 0 auto;
  }

  .blog-content {
    text-align: center;
  }

  .blog-banner::after {
    display: none;
  }

  .blog-content-section {
    padding: 40px 0 20px;
  }

  .blog-card-img {
    height: 150px;
  }

  .blog-card-body {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 0.95rem;
  }

  .blog-card-text {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
  }

  .blog-card-link {
    font-size: 0.88rem;
  }

  .about-b-section {
    padding-top: 70px;
  }

  .about-b-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .about-b-img {
    max-width: 400px;
    width: 100%;
  }

  .about-b-section::after {
    width: 160px;
  }

  .about-b-label {
    font-size: 1.2rem;
  }

  .about-b-subtitle {
    font-size: 0.82rem;
    max-width: 100%;
  }

  .about-b-bottom-after {
    height: 45px;
  }

  .about-b-section::before {
    height: 100%;
    max-height: 550px;
    top: 50%;
    opacity: 0.3;
  }

  .about-b-bottom-wave {
    margin-top: -1px;
  }

  .tc-section {
    padding: 55px 0 65px;
  }

  .tc-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .tc-center-img {
    grid-column: 1;
    order: -1;
  }

  .tc-card--lavender,
  .tc-card--lime,
  .tc-card--dark,
  .tc-card--cream {
    grid-column: 1;
    grid-row: auto;
  }

  .tc-center-img img {
    max-width: 200px;
  }

  .tc-card {
    min-height: 100px;
    padding: 1rem 1.2rem;
  }

  .tc-card--lavender,
  .tc-card--cream {
    aspect-ratio: auto;
    min-height: 100px;
    padding: 1rem 1.2rem;
  }

  .tc-stat-num {
    font-size: clamp(2rem, 6vw, 2.4rem);
  }

  .tc-stat-label {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }

  .tc-card--lime::before,
  .tc-card--dark::before {
    top: -5px;
    right: -15px;
    width: 70px;
    height: 45px;
  }

  .ft-section {
    padding: 55px 0 50px;
  }

  .ft-block--img-left::before,
  .ft-block--img-right::before {
    display: none;
  }

  .ft-header {
    margin-bottom: 40px;
  }

  .ft-block {
    gap: 24px;
    margin-bottom: 48px;
  }

  .ft-img-col {
    width: 100%;
  }

  .ft-blob-wrap {
    padding: 2.2rem 1.8rem;
  }

  .ft-block-heading {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .ft-block-body {
    font-size: 0.88rem;
  }

  .ft-subtitle {
    font-size: 0.88rem;
  }

  .why-diff-section {
    padding: 45px 0 15px;
  }

  .why-diff-card {
    padding: 1.4rem 1.2rem;
    gap: 1rem;
    border-radius: 14px;
  }

  .why-diff-card-img {
    width: 80px;
    height: 80px;
  }

  .why-diff-section-bg {
    padding: 24px 0;
    min-height: auto;
  }

  .why-diff-section .why-diff-card-img-wrap {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
  }

  .why-diff-section .why-diff-card-img {
    width: 96px;
    height: 96px;
  }

  .eliminate-section {
    padding: 40px 0 30px;
  }

  .eliminate-content {
    padding: 2rem 1.2rem 1rem;
  }

  .eliminate-heading {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .eliminate-img {
    max-width: 210px;
  }

  .eliminate-card {
    border-radius: 14px;
  }

  .eliminate-btn {
    font-size: 0.88rem;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  }

  .therapy-b-section {
    padding-top: 70px;
  }

  .therapy-b-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .therapy-b-img {
    max-width: 400px;
    width: 100%;
  }

  .therapy-b-section::after {
    width: 160px;
  }

  .therapy-b-label {
    font-size: 1.2rem;
  }

  .therapy-b-subtitle {
    font-size: 0.82rem;
  }

  .therapy-b-section::before {
    height: 550px;
    top: 50%;
    opacity: 0.3;
  }

  .online-therapy-section {
    padding: 50px 0 60px;
  }

  .ot-step-card {
    padding: 1.3rem 1rem;
  }

  .ot-step-num {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .ot-step-title {
    font-size: 0.95rem;
  }

  .ot-step-text {
    font-size: 0.82rem;
  }

  .sbt-section {
    padding: 50px 0 60px;
  }

  .sbt-card {
    padding: 1.5rem 1.2rem;
  }

  .sbt-card-img {
    height: 90px;
  }

  .sbt-card-img img {
    max-height: 80px;
  }

  .sbt-card::after {
    width: 50%;
    right: -40px;
    top: -30px;
    opacity: 0.4;
  }

  .cr-list {
    gap: 10px;
  }

  .cr-list li {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .client-rights-card {
    padding: 16px 10px;
    border-radius: 14px;
  }

  .contact-section {
    padding-top: 74px;
    padding-bottom: 30px;
  }

  .contact-card {
    border-radius: 16px;
  }

  .contact-info-col {
    padding: 1.5rem 1.2rem 1rem;
  }

  .contact-heading {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .contact-desc {
    font-size: 0.85rem;
  }

  .contact-illustration img {
    max-height: 170px;
  }

  .contact-form-col {
    padding: 1.5rem 1.2rem;
    border-radius: 0 0 16px 16px;
  }

  .contact-form-heading {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

  .contact-form-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.9rem;
  }

  .contact-field {
    padding: 1.2rem 0 0.5rem;
  }

  .btn-contact-submit {
    font-size: 0.88rem;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  }

  .btn-contact-icon {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .blog-carousel .carousel-img {
    max-height: 250px;
  }

  .blog-gallery img {
    max-height: 250px;
  }

}

@media (max-width: 475px) {
  .quote-open {
    display: none;
  }

  .quote-close {
    display: none;
  }

  .blog-carousel .carousel-img {
    max-height: 170px;
  }

  .blog-gallery img {
    max-height: 170px;
  }
}


@media (max-width: 375px) {

  .photo-circle {
    width: 260px;
    height: 260px;
    border-width: 12px;
  }

  .name-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .hero-title-big {
    font-size: 2.2rem;
  }

  .quote-open {
    font-size: 2.4rem;
    left: 15px;
  }

  .quote-close {
    font-size: 2.4rem;
    right: 0;
  }

  .about-b-heading {
    font-size: 1.8rem;
  }

  .about-b-label {
    font-size: 1rem;
  }

  .therapy-b-heading {
    font-size: 1.8rem;
  }

  .therapy-b-label {
    font-size: 1rem;
  }

  .therapies-heading {
    font-size: 1.4rem;
  }

  .therapies-subtitle,
  .insight-subtitle,
  .testimonial-subtitle {
    font-size: 0.82rem;
  }

  .head-badge {
    font-size: 0.68rem;
    padding: 0.2rem 0.7rem;
  }

  .btn-hero-cta {
    font-size: 0.82rem;
    padding: 0.6rem 0.6rem 0.6rem 1.2rem;
  }

  .btn-hero-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .faq-btn {
    font-size: 0.85rem;
    padding: 0.85rem 1.2rem 0.85rem 0;
  }

  .faq-body {
    font-size: 0.82rem;
  }

  .contact-info-col {
    padding: 1.2rem 1rem 0.8rem;
  }

  .contact-heading {
    font-size: 1.3rem;
  }

  .contact-form-col {
    padding: 1.2rem 1rem;
  }

  .contact-form-heading {
    font-size: 1.25rem;
  }

  .contact-illustration img {
    max-height: 140px;
  }
}

@media (max-height: 800px) {
  .photo-circle {
    width: 520px;
    height: 520px;
  }

  .hero-section::after {
    right: 40%;
  }

  .therapy-b-section::before {
    height: 650px;
  }
}

@media screen and (max-width: 1192px) and (max-height: 1458px) {
  section.therapy-b-section {
    min-height: 100%;
  }

  .therapy-b-row {
    min-height: 100%;
  }

  .therapy-b-section::before {
    height: 530px;
    top: 50%;
  }

  section.contact-section {
    min-height: 100%;
    padding-top: 120px;
  }
}

@media screen and (max-width: 1200px) and (max-height: 640px) {
  .photo-circle {
    width: 480px;
    height: 480px;
  }

  .hero-section::before {
    top: 20%;
    max-width: 400px;
    max-height: 650px;
  }

  .cta-footer-wrap::before {
    left: -50px;
    width: 180px;
    height: 180px;
  }

  .home-faq-section::before {
    height: 840px;
  }

  .home-about-card::before {
    width: 200px;
    height: 220px;
  }

  .therapy-b-section::before {
    height: 520px;
  }

  .about-b-section::before {
    height: 100%;
    max-height: 550px;
  }

  .about-b-section::after {
    bottom: 40px;
    max-width: 330px;
  }
}

@media screen and (max-width: 1024px) and (max-height: 800px) {
  .about-b-section {
    min-height: 100%;
  }

  .about-b-row {
    min-height: 100%;
  }

  .about-b-section::before {
    max-height: 430px;
    top: 50%;
  }

  .ft-header {
    margin: 0 auto 20px;
  }

  .tc-section {
    padding: 50px 0 50px;
  }

  .tc-card--lime::before {
    width: 160px;
    height: 120px;
  }

  .tc-card--dark::before {
    width: 160px;
    height: 120px;
  }
}

@media screen and (max-width: 1199.98px) and (max-height: 720.98px) {
  .about-b-section::before {
    max-height: 470px;
    top: 53%;
  }


  .ft-section {
    padding: 50px 0 50px;
  }

  .ft-header {
    margin: 0 auto 20px;
  }

  .why-diff-section {
    padding-top: 50px;
  }

  .eliminate-section {
    padding-top: 0px;
  }
}

@media screen and (max-width: 1024px) and (max-height: 1366px) {
  section.therapy-b-section {
    min-height: auto;
  }

  .therapy-b-row {
    min-height: auto;
  }

  .therapy-b-section::before {
    height: 430px;
    top: 50%;
  }
}


@media screen and (max-width: 575px) and (max-height: 750px) {
  .photo-circle {
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 360px) and (max-height: 640px) {
  .photo-circle {
    width: 320px;
    height: 320px;
  }
}

@media print {

  .hero-section::before,
  .hero-section::after,
  .home-faq-section::before,
  .cta-footer-wrap::before,
  .health-checkup-inner::before,
  .health-checkup-inner::after,
  .online-therapy-section::after,
  .sbt-section::before,
  .sbt-section::after,
  .sbt-card::after,
  .ot-step-card::after,
  .therapy-b-section::before,
  .therapy-b-section::after,
  .about-b-section::before,
  .about-b-section::after,
  .blog-banner::before,
  .blog-banner::after {
    display: none !important;
  }
}

@media (max-width: 1193px) and (max-height: 1591px) {

  .blog-banner-row,
  .about-b-row {
    min-height: auto !important;
  }

  .section.therapy-b-section {
    min-height: auto !important;
  }
}

.disclaimer-banner {
  padding-top: 150px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #ffffff 0%, var(--pale-lavender) 100%);
  text-align: center;
}

.disclaimer-banner-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.disclaimer-banner-icon {
  font-size: 1rem;
  color: var(--deep-purple);
}

.disclaimer-content {
  padding-top: 30px;
  padding-bottom: 0px;
  background: var(--white);
}

.disclaimer-block {
  margin-bottom: 0;
  padding: 2.5rem 0;
}

.disclaimer-divider {
  border: none;
  border-top: 1px solid var(--pale-lavender);
  margin: 0;
  opacity: 1;
}

.disclaimer-heading-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.disclaimer-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pale-lavender);
  color: var(--deep-purple);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.disclaimer-heading {
  font-family: 'Quando', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.4;
}

.blog-detail-article-text {
  font-family: 'Quattrocento', serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ============================================================
   Blog Carousel
   ============================================================ */

.blog-carousel .carousel-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.blog-gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.carousel-btn {
  background: #1f0845;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

button.carousel-btn.carousel-control-next {
  right: 20px;
}

button.carousel-btn.carousel-control-prev {
  left: 20px;
}

/* ============================================================
   Blog Share Buttons
   ============================================================ */
.blog-detail-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e8e0f0;
}

.blog-share-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5b8e;
  flex-shrink: 0;
}

.blog-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep-purple);
  color: #fff;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.blog-share-btn:hover {
  background: var(--lime-yellow);
  color: var(--deep-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(36, 0, 70, 0.12);
}

.blog-share-btn.copy-link.copied {
  background: var(--lime-yellow);
  color: var(--deep-purple);
}

/* ============================================================ */

.disclaimer-helpline-list {
  list-style: none;
  padding: 0.8rem 0 0;
  margin: 0;
}

.disclaimer-helpline-list li {
  font-family: 'Quattrocento', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 0.65rem 0;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--pale-lavender);
}

.disclaimer-helpline-list li:last-child {
  border-bottom: none;
}

.disclaimer-li-icon {
  font-size: 0.75rem;
  color: var(--soft-lavender);
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.disclaimer-helpline-list a {
  color: var(--deep-purple);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.disclaimer-helpline-list a:hover {
  border-color: var(--soft-lavender);
}