/* =============================================
   HAPPY POD — style.css
   Colors: #240046 | #B9B1FF | #D1DE54 | #EFE8F8 | #F9F5E9
   Fonts: Quando (headings) | Quattrocento (body)
   ============================================= */

: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: fluid up to tablet, capped on desktop ────── */
/* container-fluid container-xxl → full-width below 1400px,
   then capped at 1700px on extra-large screens. */
.container-xxl {
  max-width: 1600px !important;
}
.container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
}
/* ─── Reset & Base ─────────────────────────── */
*, *::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%; }

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pale-lavender); }
::-webkit-scrollbar-thumb { background: var(--soft-lavender); border-radius: 3px; }

/* ─── Utility ───────────────────────────────── */
.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;
}

.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); }

/* ─── REUSABLE UTILITIES ──────────────────────── */

/* Section spacing */
.section-pad       { padding: 90px 0; }
.section-pad-lg    { padding: 100px 0; }
.section-pad-sm    { padding: 80px 0; }

/* Section badge base */
.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; }

/* Section heading base */
.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; }

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

/* Card base */
.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 */
.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 */
.card-text-base {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* Button pill base */
.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; }

/* Button icon circle */
.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); }

/* Image wrapper */
.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 safety for sections with positioned decorations */
.overflow-clip { overflow: hidden; }

/* Focus visible for accessibility */
.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 ────────────────────────────────── */
.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: 0.6rem 0;
  border-bottom-color: var(--pale-lavender);
  box-shadow: 0 2px 20px rgba(36,0,70,0.07);
}

/* Logo */
.navbar-brand { display: flex; align-items: center; padding: 0; }
.brand-logo { height: 38px; width: auto; }

/* Nav links — centered between logo and CTA */
.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;
}

/* Nav CTA button — outlined dark pill per design */
.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;
}

/* Mobile toggler */
.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 ──────────────────────────── */
.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;
}

/* Decorative yellow vertical strip — behind photo circle right side */
.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;
}
/* Decorative green squiggle ribbon — upper-right area */
.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;
}

/* Subtle horizontal background lines */
.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;
}

/* ── Left column: text content ── */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  text-align: center;
}

/* Large opening curly quote mark */
.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;
}
/* "I chose the name" */
.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;
}

/* "HAPPY POD" */
.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;
}

/* Body paragraph */
.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;
}

/* Closing quote */
.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 button — dark filled pill */
.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);
}

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

/* Purple circle — behind photo */

/* White ring — around the purple circle */

/* Photo circle — holds the real therapist image */
.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 — overlapping bottom-right of photo circle */
.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;
}

/* ─── SECTION: SPECIALIZED BRIEF THERAPIES ──── */
.therapies-section {
  padding: 50px 0 50px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative yellow triangle on the right */
.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;
}

/* Badge pill */
.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;
}

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

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

/* Therapy cards — base */
.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);
}

/* Card variant: lime-yellow (card 1) */
.therapy-card--lime {
  background: #D1DE54;
}

/* Card variant: lavender (card 2) */
.therapy-card--lavender {
  background: #E9D3FF;
}

/* Card variant: cream (card 3) */
.therapy-card--cream {
  background: #F9F5E9;
}

/* Card variant: pale lavender (card 4) */
.therapy-card--pale {
  background: #EFE8F8;
}

/* Card image/illustration area */
.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;
}

/* Card title */
.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;
}

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

/* Learn more link */
.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);
}

/* Read More button (unified across all pages) */
.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;
}

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

/* ─── SECTION: HOME ABOUT ──────────────────────── */
.home-about-section {
  padding: 0;
  background: #fff;
  position: relative;
}

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

/* Decorative thought bubble — top-right */
.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);
}

/* Decorative heart scribble — bottom-center */
.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;
}
/* Image column */
.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;
}

/* Content column */
.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: 540px;
}


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


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

/* Insight card */
.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);
}

/* Card image */
.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;
}

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

/* Date */
.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;
}

/* Card title */
.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;
}

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

/* Learn more link */
.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);
}


/* ─── SECTION: HOME FAQ ──────────────────────────── */
.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);
}
/* Left column wrapper */
.faq-left {
  text-align: left;
  position: relative;
  display: block;
  z-index: 999;
}

/* Image */
.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;
}
/* Accordion overrides */
.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;
}

/* Accordion button — question */
.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;
}

/* Plus icon (collapsed) / Minus icon (expanded) */
.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;
}

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

/* ─── SECTION: HEALTH CHECKUP ────────────────────── */
.health-checkup-section {
  padding: 0;
  background: #fff;
}

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

/* Decorative swirl — left */
.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;
}

/* Decorative swirl — right */
.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;
}

/* Text */
.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;
}

/* CTA Button */
.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);
}

/* ─── SECTION: HOME TESTIMONIAL ──────────────────── */
.home-testimonial-section {
  padding: 90px 0 0;
  background: #f1efff;
  position: relative;
  overflow: hidden;
}

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

/* Slider wrapper */
.testimonial-slider-wrap {
  position: relative;
  padding: 0 50px;
}

/* Testimonial card */
.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);
}

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

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

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

/* Name */
/* Author row */
.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;
}

/* Swiper slide height */
.testimonialSwiper .swiper-slide {
  height: auto;
}

/* Pagination dots */
.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;
}

/* Navigation arrows */
.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;
}

/* ─── SECTION: CTA + FOOTER ──────────────────────── */
.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;
}

/* Decorative scallop/wave top border */
.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;
}

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

/* Content */
.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);
}

/* Image — flush to bottom */
.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;
}
.cta-appointment-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-left: auto;
  z-index: 99;
  position: relative;
}

/* ─── FOOTER ─────────────────────────────────────── */
#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);
}

/* Top row: brand left, contact right */
.footer-top-row {
  padding-bottom: 1.5rem;
}

/* Brand column */

.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%;
}

/* Contact column — right side */
.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 bar */
.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-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-family: 'Quattrocento', serif;
  font-size: 0.82rem;
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ─── SECTION: WHY HAPPY POD ─────────────────── */
#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;
}

/* ─── SECTION: SERVICES ─────────────────────── */
#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); }

/* ─── SECTION: ABOUT ────────────────────────── */
#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;
}

/* ─── SECTION: TESTIMONIALS ─────────────────── */
#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);
}

/* ─── SECTION: FAQ ──────────────────────────── */
#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);
}

/* ─── SECTION: CTA BANNER ───────────────────── */
#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 ────────────────────────────────── */
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 ────────────────────────────── */
@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; }
}

/* Subtle decorative drifts */
@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; }

/* Dot pulse animations */
.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; }

/* ─── DECORATIVE PSEUDO-ELEMENT FLOATS ─────── */
/* .hero-section::before  { animation: drift-up 7s ease-in-out infinite; } */
.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; }

/* ─── CARD HOVER MICRO-INTERACTIONS ──────────── */
.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);
}

/* ─── BUTTON HOVER MICRO-INTERACTIONS ────────── */
.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 — gentle lift */
.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 — very subtle hover glow */
.photo-circle {
  transition: box-shadow 0.5s ease;
}
.photo-circle:hover {
  box-shadow: 0 18px 55px rgba(36, 0, 70, 0.2);
}

/* ─── REDUCED MOTION ──────────────────────────── */

/* ─── AOS OVERRIDES ─────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Tablet — hero stacks, image centers */

/* Mobile — centered text, smaller photo */

/* Small mobile */

/* ─── RESPONSIVE: Overflow safety ─────────── */
.home-faq-section,
.home-insight-section,
.cta-footer-wrap,
#why,
#services,
#about,
#faq,
#cta-banner { overflow: hidden; }

/* ==============================================
   RESPONSIVE STYLES
   ============================================== */


/* Standard desktops */















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

/* ─── BLOG BANNER ────────────────────────────── */
.blog-banner {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
  padding-top: 90px;
  overflow: hidden;
}
.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);
}

/* ── Left: Illustration column ── */
.blog-banner-img-col {
  position: relative;
  z-index: 2;
}

/* Purple blob behind illustration */
.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;
}

/* ── Right: Text content column ── */
.blog-banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner content wrapper — right-aligned text */
.blog-content {
  text-align: right;
}

/* Heading + icon wrapper */
.blog-banner-heading-wrap {
  position: relative;
}

/* Heading */
.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, 4rem);
}

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

/* Decorative hand-drawn arrow — below heading, left-aligned */
.blog-banner-content-icon {
    display: block;
    width: 170px;
    height: auto;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    pointer-events: none;
    position: absolute;
    top: 70px;
    left: -40px;
}

/* Subtitle */
.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;
}

/* XL+ screens: push content to the right */


/* Decorative green squiggle — bottom-right */
.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 ───────────────────── */
.blog-content-section {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #fdf6e8 40%, #faf0d8 100%);
}

/* ─── BLOG CARD GRID ────────────────────────── */
.blog-card-grid {
  row-gap: 2.5rem;
  column-gap: 0;
}

/* ─── BLOG CARD ──────────────────────────────── */
.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;
}

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

/* Card image wrapper — relative for tag overlay */
.blog-card-img {
  position: relative;
  width: 100%;
  height: 210px;
  background: #f0eff5;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

/* Category tag — overlaid on the image (bottom-right) */
.blog-card-tag {
  position: absolute;
  bottom: -15px;
  right: 15px;
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  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;
  backdrop-filter: blur(4px);
  border: 1px solid #E6E6E6;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  z-index: 2;
}

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

/* Date */
.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;
}

/* Title — single line, truncated */
.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);
}

/* Description text */
.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;
}

/* Learn more link */
.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);
}

/* ─── READ MORE BUTTON ──────────────────────── */
.blog-load-more {
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}


/* ─── BLOG DETAIL PAGE ──────────────────────── */

/* Author meta */
.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;
}

/* Featured image */
.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;
}

/* Article content */
.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;
}

/* ─── RESPONSIVE: Blog detail page ─────────── */




/* ─── RESPONSIVE: Blog page ─────────────────── */









/* =========================
   ABOUT PAGE STYLES
   ========================= */

/* ─── ABOUT BANNER ─────────────────────────────── */
.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;
}

/* Layer 1: Organic lavender blob — ::before pseudo-element on the section */
/* about-banner-before.png: white organic cutout top-left, lavender fills
   top-right → right → bottom. height:100vh + width:auto scales the image
   to full viewport height so the blob covers the entire banner, and its
   natural aspect ratio places the organic left edge at ~42-46% from the
   banner left — matching the reference exactly. */
.about-b-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    /* max-width: 1000px; */
    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%);
}

/* Layer 2: Content container sits above all bg layers */
.about-b-container {
  position: relative;
  z-index: 2;
}

/* Row — flex-grow fills the 100vh section height */
.about-b-row {
  flex: 1;
  min-height: calc(100vh - 90px);
  padding-bottom: 2rem;
}

/* ── Left: Text column ── */
.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;
}

/* Yellow-green sweep line — ::after pseudo-element on the section */
/* about-banner-line.png — decorative line anchored to the bottom-left */
.about-b-section::after {
    content: '';
    position: absolute;
    bottom: 100px;
    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.9;
    margin-bottom: 0;
    max-width: 80%;
}

/* ── Right: Illustration column ── */
/* Uses about-banner-img.png */
.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;
}

/* Bottom wave — sits between banner and intro section in normal flow */
/* about-bottom-banner.png */
.about-b-bottom-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px; /* flush against banner bottom, no gap */
}

/* Layer 4: Bottom decorative spanning element (overlays the wave) */
/* Uses about-bottom-after.png — dark decorative line across the base. */
.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 ───────────────────────── */
.about-intro-section {
  padding: 100px 0 80px;
  background: #fff;
}

/* ─── ABOUT CREDENTIALS SECTION ────────────────── */
.about-credentials-section {
  padding: 80px 0 100px;
  background: #faf9fd;
}

/* ─── RESPONSIVE: About Banner ──────────────────── */










/* =========================
   THROUGH CARE SECTION
   ========================= */

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

/* Heading */
.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;
}

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

/* ── Stats Grid ──────────────────────────────────── */
.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;
}

/* ── Cards ───────────────────────────────────────── */
.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;
}

/* ── Stat numbers & labels ───────────────────────── */
.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;
}


/* ── Squiggle decoration (SVG) ───────────────────── */
.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;
}

/* ── Centre illustration ─────────────────────────── */
.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;
}

/* ── Responsive ──────────────────────────────────── */








/* =========================
   FOCUSED THERAPY SECTION
   ========================= */

.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;
}

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

/* Outlined pill badge — thin border, no fill */
.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;
}

/* ── Content blocks ──────────────────────────────────── */
.ft-block {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 20px;
}

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

/* ── Image column ────────────────────────────────────── */
.ft-img-col {
  flex: 0 0 46%;
}

/* Lavender organic blob wrapping the illustration */
.ft-blob-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2.8rem;
}

/* Left blob: organic right edge; wave sweeps bottom-right */
.ft-blob-wrap--left {
  border-radius: 52% 48% 58% 42% / 48% 52% 56% 44%;
}

/* Right blob: organic left edge; mirror of left */
.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;
}

/* ── Text column ─────────────────────────────────────── */
.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;
}

/* ── Responsive ──────────────────────────────────────── */






/* =========================
   WHY YOU ARE DIFFERENT
   ========================= */

.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;
}

/* ── Header ──────────────────────────────────────────── */
.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;
}

/* ── Cards ───────────────────────────────────────────── */
.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);
}

/* ── Reversed card (illustration on right) ───────────── */
.why-diff-card--reverse {
  flex-direction: row-reverse;
}

/* ── Card image ──────────────────────────────────────── */
.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;
}

/* ── Card text ───────────────────────────────────────── */
.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;
}

/* ── Responsive ──────────────────────────────────────── */






/* =========================
   WHY YOU ARE DIFFERENT — TUNE: accuracy pass
   ========================= */



/* Vertically center illustration with text (matches reference) */
.why-diff-section .why-diff-card {
  align-items: center;
}

/* Large illustration container — no circular bg (matches reference) */
.why-diff-section .why-diff-card-img-wrap {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  background: transparent;
  border-radius: 0;
}

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

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

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

/* Tablet */


/* Mobile */




/* =========================
   ELIMINATE SEQUEL & DIALOGUE
   ========================= */

/* ── Outer section: white bg with padding for overflow ───── */
.eliminate-section {
  background: #fff;
  padding: 80px 0 60px;  /* top padding = buffer for illustration overflow */
}

/* ── Inner card ──────────────────────────────────────────── */
.eliminate-card {
  background: #1E0646;
  border-radius: 20px;
  overflow: visible;      /* allows illustration to break above card top */
  position: relative;
}

/* ── Left: text column ───────────────────────────────────── */
.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.8rem);
  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;
}

/* ── Pill button ─────────────────────────────────────────── */
.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; }

/* ── Right: illustration column ──────────────────────────── */
.eliminate-img-col {
  display: flex;
  align-items: flex-end;    /* person sits at bottom of card */
  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;
}

/* ── Responsive ──────────────────────────────────────────── */








/* =========================
   CARD NORMALIZATION (≤991px)
   ========================= */


/* =========================
   ELIMINATE SECTION (≤1200px)
   ========================= */



/* =========================
   THERAPY BANNER SECTION
   (mirrors about-b- styles)
   ========================= */

.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-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;
}


/* ─── RESPONSIVE: Therapy Banner ──────────────────── */











/* =========================
   ONLINE THERAPY SECTION
   ========================= */

.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;
}
/* Decorative backgrounds */

.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);
}






/* =========================
   SPECIALIZED BRIEF THERAPIES
   ========================= */

.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;
}

/* Decorative section blobs */
.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 SECTION
   ========================= */

.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 PAGE STYLES
   ========================= */

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

/* Decorative elements — contact-before.png */
.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 (white container) ────────────── */
.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;
}

/* ─── Left Column: Info + Illustration ──────────── */
.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.2;
  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;
}

/* ─── Right Column: Form ────────────────────────── */
.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-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;
}

/* ─── Form Fields ───────────────────────────────── */
.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;
}

/* Autofill override for dark bg */
.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;
}

/* ─── Submit Button ─────────────────────────────── */
.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;
}


/* =========================
   RESPONSIVE FIXES
   ========================= */

/* ─── 1. GLOBAL OVERFLOW PREVENTION ─────────────────── */
html, body {
  overflow-x: hidden;
}

.container-fluid,
.container-xxl {
  overflow-x: clip;
}

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

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

/* ─── 9. TESTIMONIAL — OVERFLOW FIX ──────────────── */


/* ─── 10. CTA FOOTER — OVERFLOW & STACKING ─────────── */
.cta-footer-wrap {
  overflow: hidden;
}


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




/* ─── 17. THROUGH CARE — OVERFLOW ─────────────────── */
.tc-section {
  overflow: hidden;
}

/* ─── 18. FOCUSED THERAPY — OVERFLOW & SPACING ────── */


/* ─── 19. WHY DIFFERENT — CARDS & BG ──────────────── */
.why-diff-section-bg {
  overflow: hidden;
}





/* ─── 20. ELIMINATE SECTION — OVERFLOW ─────────────── */
.eliminate-section {
  overflow: hidden;
}



/* ─── 21. THERAPY BANNER — OVERFLOW & DECORATIVE ──── */
.therapy-b-section {
  overflow: hidden;
}
section.therapy-b-section .hero-cta-wrap {
    justify-content: start;
}







/* ─── 22. ONLINE THERAPY — OVERFLOW & SPACING ─────── */
.online-therapy-section {
  overflow: hidden;
}







/* ─── 23. SPECIALIZED BRIEF THERAPIES — OVERFLOW ──── */
.sbt-section {
  overflow: hidden;
}







/* ─── 24. CLIENT RIGHTS — MOBILE STACKING ─────────── */




/* ─── 25. GLOBAL IMAGE SAFETY ─────────────────────── */
img {
  max-width: 100%;
  height: auto;
}

/* ─── 26. GLOBAL SECTION OVERFLOW CLIP ────────────── */
section {
  overflow-x: clip;
}

/* ─── 27. TYPOGRAPHY — VERY SMALL SCREENS ─────────── */


/* ─── 28. PRINT-SAFE: HIDE DECORATIVE ON PRINT ───── */
/* =============================================
   HAPPY POD — responsive.css
   All responsive / media-query styles
   Separated from style.css for maintainability
   ============================================= */


/* ─── @media (prefers-reduced-motion: reduce) ───────────────────── */

@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: 1600px) ───────────────────── */

@media (min-width: 1600px) {
}


/* ─── @media (min-width: 1200px) ───────────────────── */

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


/* ─── @media (max-width: 1599.98px) ───────────────────── */

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

}


/* ─── @media (max-width: 1600px) ───────────────────── */

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


/* ─── @media (max-width: 1399.98px) ───────────────────── */

@media (max-width: 1399.98px) {
  .cta-footer-wrap::before {top: -50px; width: 220px; height: 180px;}
  .cta-appointment-card {padding: 2rem 2rem 0;}
  .footer-about-text {max-width: 80%;}
}

@media (max-width: 1399.98px) {
  .blog-banner-heading-line1 {font-size: 3.25rem;}
  .blog-banner-heading-line2 {font-size: 3.25rem;}
  .blog-banner::before {max-width: 550px;}
}

@media (max-width: 1399.98px) {
  .about-b-heading { font-size: 4.2rem; }
}

@media (max-width: 1399.98px) {
  .therapy-b-heading { font-size: 4.2rem; }
}


/* ─── @media (max-width: 1199.98px) ───────────────────── */

@media (max-width: 1199.98px) {
  .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-faq-section::before {top: 30px; left: -45%; width: 100%; height: 770px;}
  .cta-footer-wrap::before {top: -30px; width: 230px; height: 150px;}
  .health-checkup-inner::before {top: 30%; width: 230px; height: 230px;}
  .health-checkup-inner::after {top: 50%; width: 230px; height: 230px;}
  .home-about-card::before {width: 160px; height: 250px;}
  .home-about-img {max-width: 500px; margin: 0 auto;}
  .brand-logo {height: 30px;}
  .navbar-nav .nav-link {padding: 0.5rem 0.938rem !important;}
}

@media (max-width: 1199.98px) {
  .blog-banner::before {max-width: 430px;}
  .blog-banner-heading-line1 {font-size: 2.75rem;}
  .blog-banner-heading-line2 {font-size: 2.75rem;}
  .blog-banner-content-icon {top: 50px;}
  .blog-banner::after {width: 230px;}
}

@media (max-width: 1199.98px) {
  .about-b-heading { font-size: 3.6rem; }
  .about-b-section::after { display: none; }

  /* Center align all about page content sections */
  .about-b-subtitle { max-width: 100%; }
  .about-b-img-col { text-align: center; }
  .about-b-bottom-after {display: none;}
  .about-b-section::before {height: 800px; top: 40%;}
  .about-b-subtitle {font-size: 1rem;}
}

@media (max-width: 1199.98px) {
  .tc-grid {
    grid-template-columns: 1fr 320px 1fr;
  }
  .tc-center-img img { max-width: 320px; }
}

@media (max-width: 1199.98px) {
  .eliminate-img { max-width: 360px; }
}

@media (max-width: 1199.98px) {
  .therapy-b-heading { font-size: 3.6rem; }
  .therapy-b-section::after { display: none; }
  .therapy-b-subtitle { max-width: 100%; }
  .therapy-b-img-col { text-align: center; }

  .therapy-b-section::before { height: 800px; top: 40%; }
  .therapy-b-subtitle { font-size: 1rem; }
}

@media (max-width: 1199.98px) {
  .home-faq-section {
    overflow: hidden;
  }
}


/* ─── @media (max-width: 1199px) ───────────────────── */

@media (max-width: 1199px) {
  .eliminate-card > .row {
    flex-direction: column;
  }

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

  .eliminate-img {
    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%;
  }
}


/* ─── @media (max-width: 991.98px) ───────────────────── */

@media (max-width: 991.98px) {
  /* Responsive: therapies section */

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

  /* Responsive: home about */
  .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; }

  /* Responsive: home insight */

  .home-insight-section { padding: 70px 0; }
  .insight-card-img { height: 190px; }

  /* Responsive: home faq */

  .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; }

  /* Responsive: health checkup */

  .health-checkup-inner { padding: 65px 0; }
  .health-checkup-inner::before,
  .health-checkup-inner::after { display: none; }

  /* Responsive: testimonial */

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

  /* Responsive: CTA appointment */

  .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; }

  /* Responsive: footer */

  #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; }

  /* ─── RESPONSIVE ────────────────────────────── */

  .hero-image-wrapper { min-height: 380px; margin-top: 2rem; }
  .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: 145px; 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%; }

  /* ─── RESPONSIVE: Utility padding ──────────── */

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

  /* ─── RESPONSIVE: Why section ─────────────── */

  #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; }

  /* ─── RESPONSIVE: Services section ────────── */

  #services { padding: 70px 0; }
  .service-card { padding: 2rem 1.5rem; }
  .service-num { font-size: 2.8rem; }

  /* ─── RESPONSIVE: About section ───────────── */

  #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; }

  /* ─── RESPONSIVE: Testimonials (old #testimonials) ─ */

  #testimonials { padding: 70px 0; }
  .testi-card { padding: 1.6rem; }

  /* ─── RESPONSIVE: FAQ (old #faq) ──────────── */

  #faq { padding: 70px 0; }

  /* ─── RESPONSIVE: CTA Banner ─────────────── */

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

  .home-about-text { font-size: 0.95rem; margin: 0 auto; }
  .container-fluid { padding-left: 40px !important; padding-right: 40px !important;}
}

@media (max-width: 991.98px) {
  .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;}
}

@media (max-width: 991.98px) {
  .about-b-section { padding-top: 80px; }
  /* On tablet/mobile shrink the blob and anchor to bottom-right */
  .about-b-section::before {
    background-size: auto 65%;
    background-position: right bottom;
    opacity: 0.6;
  }
  .about-b-text-col { text-align: center; }
  .about-b-row { min-height: auto; padding-bottom: 1.5rem; }
  .about-b-text-col { text-align: center; padding-top: 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;
  }

}

@media (max-width: 991.98px) {
  .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; }
}

@media (max-width: 991.98px) {
  .ft-section { padding: 70px 0 65px; }
  .ft-header { margin-bottom: 56px; }
  .ft-block { gap: 40px; margin-bottom: 64px; }

  /* Stack image above text for both blocks */
  .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%;
  }

  /* On --img-right, keep image below text on tablet */
  .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; }
}

@media (max-width: 991.98px) {
  .why-diff-section { padding: 70px 0 80px; }
  .why-diff-header { margin-bottom: 40px; }
  .why-diff-section-bg { min-height: 500px; background-size: cover; }
}

@media (max-width: 991.98px) {
  .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;
  }
}

@media (max-width: 991.98px) {
  .eliminate-section { padding: 70px 0 50px; }
  .eliminate-content { padding: 2.5rem 1.5rem 2.5rem 2rem; }
  .eliminate-img { max-width: 300px; margin-top: -50px; padding-right: 0.5rem; }
}

@media (max-width: 991.98px) {
  .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; }
  .therapy-b-row { min-height: auto; padding-bottom: 1.5rem; }
  .therapy-b-text-col { text-align: center; padding-top: 1.5rem; }
  .therapy-b-subtitle { max-width: 100%; }
  .therapy-b-section::after { left: 50%; transform: translateX(-50%); width: 220px; }
  .therapy-b-img { max-width: 500px; }

}

@media (max-width: 991.98px) {
  .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; }
}

@media (max-width: 991.98px) {
  .sbt-section { padding: 60px 0 70px; }
  .sbt-card-img { height: 120px; }
  .sbt-card-img img { max-height: 110px; }
}

@media (max-width: 991.98px) {
  .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);
  }
  .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;
  }
}

@media (max-width: 991.98px) {
  .blog-banner::after {
    right: -20px;
    width: 180px;
    height: 150px;
    opacity: 0.4;
  }
}

@media (max-width: 991.98px) {
  .therapy-b-section::after {
    display: none;
  }
  .therapy-b-subtitle {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 991.98px) {
  .online-therapy-section::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .sbt-section::before,
  .sbt-section::after {
    display: none;
  }
  .sbt-card::after {
    width: 80%;
    right: -100px;
    opacity: 0.7;
  }
}


/* ─── @media (max-width: 991px) ───────────────────── */

@media (max-width: 991px) {
  /* Unified structure for all cards */
  .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;
  }

  /* Remove background images — keep solid colors */
  .tc-card--lavender {
    background: #D4C5EC;
    background-image: none;
  }

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

  /* Remove all decorative pseudo-elements */
  .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;
  }

  /* Remove squiggles */
  .tc-card--lavender .tc-squiggle,
  .tc-card--cream .tc-squiggle {
    display: none;
  }
}


/* ─── @media (max-width: 767.98px) ───────────────────── */

@media (max-width: 767.98px) {
  .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; }
  .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; }
  .therapies-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .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: 280px; }
  .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: none; }
  .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; }
  .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; }

  .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: -45px; bottom: -5px;}
  .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; }
  .about-accent-box { display: none; }
  .about-stats { justify-content: center; }
  .divider-line { margin: 0 auto 1.5rem; }

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

  #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; }

  #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; }

  #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; }
}

@media (max-width: 767.98px) {
  .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); }
}

@media (max-width: 767.98px) {
  .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: 190px; }
  .blog-card-grid { row-gap: 1.8rem; }
  .cta-appointment-text {width: 100%;}
}

@media (max-width: 767.98px) {
  .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; }
}

@media (max-width: 767.98px) {
  .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; }
}

@media (max-width: 767.98px) {
  .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%; }
}

@media (max-width: 767.98px) {
  .why-diff-card,
  .why-diff-card--reverse { flex-direction: column; text-align: center; }
  .why-diff-card-img-wrap { flex: none; }
  .why-diff-section-bg { min-height: auto; padding: 40px 0; background-size: cover; }
}

@media (max-width: 767.98px) {
  .why-diff-section .why-diff-card {
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .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; }
}

@media (max-width: 767.98px) {
  .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; }

}

@media (max-width: 767.98px) {
  .cr-list li {
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 767.98px) {
  .why-diff-card,
  .why-diff-card--reverse {
    align-items: center;
    gap: 1rem;
  }
  .why-diff-card-img-wrap {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .online-therapy-section {
    padding: 50px 0 60px;
  }
  .ot-step-card::after {
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
  }
}

@media (max-width: 767.98px) {
  .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;
  }
}

@media (max-width: 767.98px) {
  .client-rights-card {
    padding: 20px 14px;
  }
}


/* ─── @media (max-width: 575.98px) ───────────────────── */

@media (max-width: 575.98px) {
  .therapies-section { padding: 50px 0 40px; }
  .therapies-heading { font-size: clamp(1.6rem, 5vw, 2rem); }
  .therapies-subtitle { font-size: 0.9rem; }

  .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%; }
  .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: 220px; }

  .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; }
  .testimonial-quote { font-size: 0.85rem; }
  .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; }

  #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; }
  .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; }

  .hero-title-big { font-size: 2.6rem; }
  .hero-title-small { font-size: 0.95rem; }
  .quote-open { font-size: 2.8rem; left: 30px; }
  .quote-close { font-size: 3rem; right: -30px; bottom: 0;}
  .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; }
  .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; }

  #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; }

  /* ─── RESPONSIVE: Global text & images ────── */

  .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; }
}

@media (max-width: 575.98px) {
  .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.9rem; }
  .blog-detail-inline-img { margin: 1.5rem 0; }
}

@media (max-width: 575.98px) {
  .blog-banner { padding-top: 70px; }
  .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; top: 25px; left: 0;}
  .blog-banner-subtitle { font-size: 0.88rem; }
  .blog-banner::after { display: none; }
  .blog-content-section { padding: 40px 0 20px; }
  .blog-card-img { height: 170px; }
  .blog-card-body { padding: 1rem; }
  .blog-card-title { font-size: 0.95rem; }
  .blog-card-text { font-size: 0.82rem; -webkit-line-clamp: 3; }
}

@media (max-width: 575.98px) {
  .about-b-section { padding-top: 70px; }
  .about-b-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
  .about-b-img { max-width: 400px; }
  .about-b-section::after { width: 160px; }
  .about-b-label { font-size: 1.2rem; }
  .about-b-subtitle { font-size: 0.82rem; }
  .about-b-bottom-after { height: 45px; }
  .about-b-section::before {
    height: 550px;
    top: 50%;
}
}

@media (max-width: 575.98px) {
  .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; }
}

@media (max-width: 575.98px) {
  .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); }
}

@media (max-width: 575.98px) {
  .why-diff-section { padding: 55px 0 65px; }
  .why-diff-card { padding: 1.4rem 1.2rem; gap: 1rem; }
  .why-diff-card-img { width: 80px; height: 80px; }
  .why-diff-section-bg { padding: 30px 0; }
}

@media (max-width: 575.98px) {
  .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;
  }
}

@media (max-width: 575.98px) {
  .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; }
}

@media (max-width: 575.98px) {
  .therapy-b-section { padding-top: 70px; }
  .therapy-b-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
  .therapy-b-img { max-width: 400px; }
  .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%;
  }
}

@media (max-width: 575.98px) {
  .online-therapy-section { padding: 50px 0 60px; }
  .ot-step-card { padding: 1.5rem 1.2rem; }
}

@media (max-width: 575.98px) {
  .sbt-section { padding: 50px 0 60px; }
  .sbt-card { padding: 1.5rem 1.2rem; }
  .sbt-card-img { height: 100px; }
  .sbt-card-img img { max-height: 90px; }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 575.98px) {
  .quote-close {
    right: 0;
  }
  .hero-image-wrapper {
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .therapy-card-img {
    height: 110px;
  }
  .therapy-card-img img {
    max-height: 100px;
  }
}

@media (max-width: 575.98px) {
  .home-about-img-wrap {
    overflow: hidden;
  }
  .home-about-img {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    word-break: break-word;
  }
  .testimonial-quote {
    font-size: 0.82rem;
  }
}

@media (max-width: 575.98px) {
  .cta-appointment-heading {
    word-break: break-word;
  }
  .cta-appointment-content {
    padding: 1.2rem 0.5rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .footer-contact-col .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-contact-item {
    margin-left: 0 !important;
  }
  .footer-bottom-inner {
    padding: 1rem 0;
  }
}

@media (max-width: 575.98px) {
  .blog-banner-illustration {
    padding: 1rem 0;
  }
  .blog-banner-content-icon {
    position: relative;
    top: auto;
    left: auto;
    margin: 0.5rem auto 0.5rem 0;
  }
  .blog-content {
    text-align: center;
  }
  .blog-banner-content-icon {
    margin: 0.5rem auto;
  }
  .blog-banner-subtitle {
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .blog-card-text {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
  }
  .blog-card-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 575.98px) {
  .blog-detail-article p {
    font-size: 0.88rem;
    line-height: 1.75;
  }
  .blog-detail-featured-img img {
    max-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .about-b-section::before {
    opacity: 0.3;
  }
  .about-b-subtitle {
    max-width: 100%;
  }
  .about-b-img {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-b-bottom-wave {
    margin-top: -1px;
  }
}

@media (max-width: 575.98px) {
  .ft-block-body {
    font-size: 0.88rem;
  }
  .ft-subtitle {
    font-size: 0.88rem;
  }
}

@media (max-width: 575.98px) {
  .why-diff-section {
    padding: 45px 0 15px;
  }
  .why-diff-section-bg {
    padding: 24px 0;
    min-height: auto;
  }
  .why-diff-card {
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  .eliminate-card {
    border-radius: 14px;
  }
  .eliminate-btn {
    font-size: 0.88rem;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .therapy-b-section::before {
    opacity: 0.3;
  }
  .therapy-b-img {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .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;
  }
}

@media (max-width: 575.98px) {
  .sbt-card::after {
    width: 50%;
    right: -40px;
    top: -30px;
    opacity: 0.4;
  }
  .sbt-card-img {
    height: 90px;
  }
  .sbt-card-img img {
    max-height: 80px;
  }
}

@media (max-width: 575.98px) {
  .cr-list {
    gap: 10px;
  }
  .cr-list li {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .client-rights-card {
    padding: 16px 10px;
    border-radius: 14px;
  }
}


/* ─── @media (max-width: 375px) ───────────────────── */

@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;
  }
}

@media (max-width: 375px) {
  .about-b-heading {
    font-size: 1.8rem;
  }
  .about-b-label {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .therapy-b-heading {
    font-size: 1.8rem;
  }
  .therapy-b-label {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .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;
  }
}


/* ─── Special / Combined Media Queries ────── */

@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: 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: -60px; width: 200px; height: 200px;}
  .home-faq-section::before {height: 840px; }
  .home-about-card::before {width: 200px; height: 220px;}
  .therapy-b-section::before {height: 520px;}
}

@media screen and (max-width: 576px) 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;}
}




/* ─── 29. CONTACT PAGE — RESPONSIVE ─────────────── */

/* --- Minor spacing tweak ≤1199px --- */
@media (max-width: 1199.98px) {
  .contact-card {
    padding: 30px;
  }
  .contact-section::before {
    width: 600px;
    height: 600px;
  }
  .contact-section::after {
    width: 650px;
    height: 650px;
  }
}

/* --- Tablet ≤991px — stack columns --- */
@media (max-width: 991.98px) {
  .contact-section {
    padding-top: 90px;
    padding-bottom: 50px;
    min-height: auto;
  }
  /* Hide decorative pseudo-elements to prevent overflow */
  .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;
  }
}

/* --- Mobile ≤767px — single column, full-width --- */
@media (max-width: 767.98px) {
  .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;
  }
  /* Full-width button on mobile */
  .contact-submit-wrap {
    justify-content: stretch;
  }
  .btn-contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* --- Small mobile ≤575px — fine-tune --- */
@media (max-width: 575.98px) {
  .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;
  }
}

/* --- Extra-small ≤375px --- */
@media (max-width: 375px) {
  .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 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;
  }
}


/* =========================
   DISCLAIMER PAGE STYLES
   ========================= */

/* ─── Banner ─────────────────────────────── */
.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: 2.2rem;
  color: var(--deep-purple);
}

/* ─── Content ────────────────────────────── */
.disclaimer-content {
  padding-top: 30px;
  padding-bottom: 80px;
  background: var(--white);
}

.disclaimer-block {
  margin-bottom: 0;
  padding: 2.5rem 0;
}

/* ─── Soft divider between blocks ────────── */
.disclaimer-divider {
  border: none;
  border-top: 1px solid var(--pale-lavender);
  margin: 0;
  opacity: 1;
}

/* ─── Heading row: icon + text inline ────── */
.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;
}

/* ─── Body text ──────────────────────────── */
.blog-detail-article-text {
  font-family: 'Quattrocento', serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ─── Helpline list ──────────────────────── */
.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);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 991px) {
  .disclaimer-banner { padding-top: 120px; padding-bottom: 50px; }
  .disclaimer-content { padding-top: 20px; padding-bottom: 60px; }
}

@media (max-width: 767px) {
  .disclaimer-banner { padding-top: 100px; padding-bottom: 36px; }
  .disclaimer-banner-icon { font-size: 1.6rem; }
  .disclaimer-content { padding-top: 10px; padding-bottom: 44px; }
  .disclaimer-block { padding: 1.8rem 0; }
  .disclaimer-icon-circle { width: 42px; height: 42px; font-size: 1rem; }
}
