/* ============================================================
   LUMIA WELLNESS BGC — Main Stylesheet
   Brand Colors: #E5908F | #F8F5E2 | #FFFFFF | #C66264 | #000000
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── CSS Custom Properties ── */
:root {
  --rose: #E79190;
  --cream: #F8F5E2;
  --white: #ffffff;
  --deep-rose: #E95D67;
  --black: #000000;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --shadow-sm: 0 2px 12px rgba(198, 98, 100, 0.1);
  --shadow-md: 0 8px 32px rgba(198, 98, 100, 0.14);
  --shadow-lg: 0 20px 60px rgba(198, 98, 100, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500;
}
h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Layout Utilities ── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.text-center {
  text-align: center;
}
.text-rose {
  color: var(--rose);
}
.text-deep {
  color: var(--deep-rose);
}

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 12px;
}
.label-tag::before {
  content: "— ";
}
.label-tag::after {
  content: " —";
}

.section-header {
  margin-bottom: 56px;
}
.site-logo-footer{
      margin-bottom: 25px;
}

/* ── FIX: Logo visibility on scrolled & non-transparent nav ── */

/* When header is scrolled (white background), show dark version of logo
   OR invert the white logo so it's visible */
.site-header.scrolled .nav-logo img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(310deg) brightness(0.6);
  /* This turns white → deep rose color. Alternatively use brightness(0) for black */
}

/* Simpler option — just make it dark/black on scrolled white bg */
.site-header.scrolled .nav-logo img {
  filter: brightness(0); /* turns white logo → black */
}

/* Inner pages: nav starts solid (not transparent), so logo needs to be visible */
.site-header:not(.transparent) .nav-logo img {
  filter: brightness(0); /* black logo on light bg */
}

/* Transparent nav (over hero): keep logo white */
.site-header.transparent .nav-logo img,
.site-header.transparent.scrolled .nav-logo img {
  filter: none; /* white logo on dark hero bg */
}
.section-header p {
  max-width: 520px;
}
.section-header.center {
  text-align: center;
}
.section-header.center p {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--deep-rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(198, 98, 100, 0.35);
}
.btn-primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198, 98, 100, 0.45);
}
.btn-outline {
  border: 1.5px solid var(--deep-rose);
  color: var(--deep-rose);
}
.btn-outline:hover {
  background: var(--deep-rose);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--deep-rose);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn svg {
  transition: transform 0.25s;
}
.btn:hover svg {
  transform: translateX(3px);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────────────────────
   HEADER / NAVIGATION
───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(198, 98, 100, 0.1);
}
.site-header.transparent {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1440px !important;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-body);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--deep-rose);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-rose);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── Transparent nav (over hero) ── */
.site-header.transparent .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
.site-header.transparent .nav-links a::after {
  background: var(--rose);
}
.site-header.transparent .nav-links a:hover,
.site-header.transparent .nav-links a.active {
  color: #fff;
}
.site-header.transparent .logo-text {
  color: #fff;
}
.site-header.transparent .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}
.site-header.transparent .logo-mark {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.site-header.transparent .hamburger span {
  background: #fff;
}
.site-header.transparent .nav-cta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}
.site-header.transparent .nav-cta:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
  box-shadow: 0 6px 24px rgba(198, 98, 100, 0.4);
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--white);
  z-index: 99999;
  padding: 40px 32px 40px;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  left: 0;
  z-index: 9999 !important;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--text-dark);
  border-bottom: 1px solid rgba(229, 144, 143, 0.2);
  transition: color var(--transition), padding-left var(--transition);
}
#mobileNav .btn-primary {
  text-align: center;
  color: #ffffff;
}
.mobile-nav a:hover {
  color: var(--deep-rose);
  padding-left: 8px;
}
.mobile-nav .mobile-cta {
  margin-top: 28px;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────────────────────────────
   HERO (HOME)
───────────────────────────────────────────────────────────── */
.hero-home {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(229, 144, 143, 0.22) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-home::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(198, 98, 100, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-rose);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--deep-rose);
}
.hero-home h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.hero-home h1 em {
  font-style: italic;
  color: var(--deep-rose);
}
.hero-home p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 144, 143, 0.3);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--deep-rose);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 580px;
}
.hero-img-main {
  width: 80%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}
.hero-img-accent {
  width: 52%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.hero-badge {
  position: absolute;
  top: 30px;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  z-index: 2;
}
.hero-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge .badge-icon svg {
  color: white;
}
.hero-badge strong {
  font-size: 0.95rem;
  display: block;
  color: var(--text-dark);
}
.hero-badge span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────────────────────────────
   INNER PAGE HERO
───────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    rgba(229, 144, 143, 0.15) 100%
  );
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(229, 144, 143, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--deep-rose);
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--deep-rose);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES / FEATURES
───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(229, 144, 143, 0.15);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 144, 143, 0.4);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 24px;
}
.service-card-body .tag {
  display: inline-block;
  background: rgba(229, 144, 143, 0.15);
  color: var(--deep-rose);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.service-card-body .learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-rose);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .learn-more {
  gap: 10px;
}

/* ─────────────────────────────────────────────────────────────
   FEATURED SERVICES (HOME)
───────────────────────────────────────────────────────────── */
.features-section {
  background: var(--cream);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(229, 144, 143, 0.12);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--deep-rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-item:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 144, 143, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.feature-item:hover .feature-icon {
  background: rgba(229, 144, 143, 0.25);
}
.feature-icon svg {
  color: var(--deep-rose);
}
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 0.88rem;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS / BOOKING STEPS
───────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 42px;
  right: -12px;
  font-size: 1.4rem;
  color: var(--rose);
  opacity: 0.6;
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(198, 98, 100, 0.35);
}
.step-item h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.87rem;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(229, 144, 143, 0.12);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(229, 144, 143, 0.25);
  position: absolute;
  top: 16px;
  right: 28px;
  pointer-events: none;
}
.testimonial-card .stars {
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.author-tag {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION (HOME PREVIEW)
───────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 520px;
}
.about-img-main {
  width: 75%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  width: 48%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.about-floater {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: white;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-floater .big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.about-floater .small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: 16px;
}
.about-content p {
  margin-bottom: 20px;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-bullet .check {
  width: 22px;
  height: 22px;
  background: rgba(229, 144, 143, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-bullet .check svg {
  color: var(--deep-rose);
  width: 12px;
}
.about-bullet p {
  margin: 0;
  font-size: 0.92rem;
}

/* ─────────────────────────────────────────────────────────────
   TREATMENTS PAGE
───────────────────────────────────────────────────────────── */
.treatments-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1.5px solid rgba(229, 144, 143, 0.4);
  color: var(--text-mid);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(229, 144, 143, 0.15);
  background: var(--white);
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.treatment-card-img-wrap {
  overflow: hidden;
  height: 220px;
}
.treatment-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.treatment-card:hover .treatment-card-img-wrap img {
  transform: scale(1.06);
}
.treatment-card-body {
  padding: 28px;
}
.treatment-card-body .category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 10px;
}
.treatment-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.treatment-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.benefit-item::before {
  content: "✓";
  color: var(--deep-rose);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────────────
   BLOG
───────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(229, 144, 143, 0.12);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-img-wrap {
  overflow: hidden;
  height: 200px;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-card-body .meta .dot {
  width: 3px;
  height: 3px;
  background: var(--text-light);
  border-radius: 50%;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-rose);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more {
  gap: 9px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 16px;
}
.contact-info p {
  margin-bottom: 32px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 144, 143, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  color: var(--deep-rose);
}
.contact-detail strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-detail span {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(229, 144, 143, 0.12);
}
.form-card h3 {
  margin-bottom: 8px;
}
.form-card > p {
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(229, 144, 143, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-rose);
  box-shadow: 0 0 0 3px rgba(198, 98, 100, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   POPUP / RESERVATION MODAL
───────────────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
}
.popup-header {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: white;
  padding: 32px 40px 28px;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: white;
  margin-bottom: 6px;
}
.popup-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  margin: 0;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.popup-body {
  padding: 36px 40px;
}
.popup-body .form-grid {
  gap: 16px;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-link:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
  color: white;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col ul a:hover {
  color: var(--rose);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  color: var(--rose);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.footer-bottom a {
  color: var(--rose);
}

/* ─────────────────────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--deep-rose) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.cta-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL-TO-TOP
───────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--deep-rose);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--rose);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE FULL
───────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 144, 143, 0.12);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(229, 144, 143, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid,
  .features-list,
  .treatments-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid .step-item:nth-child(2)::after {
    display: none;
  }
  .hero-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    justify-content: start;
    align-items: baseline;
  }
  .number-sec-box {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-badge {
    flex-direction: column;
    text-align: center;
  }
  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 320px;
    margin-top: 20px;
  }
  .hero-img-main {
    width: 100%;
    height: 320px;
  }
  .hero-img-accent {
    display: none;
  }
  .hero-badge {
    display: none;
  }
  .hero-stats {
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 280px;
    margin-bottom: 20px;
  }
  .about-img-main {
    width: 100%;
    height: 280px;
  }
  .about-img-accent {
    display: none;
  }
  .about-floater {
    display: none;
  }

  .services-grid,
  .features-list,
  .treatments-grid,
  .blog-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-item::after {
    display: none;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-card {
    padding: 28px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  .popup-header {
    padding: 24px 24px 20px;
  }
  .popup-body {
    padding: 24px;
  }

  .section {
    padding: 40px 0;
  }
  .cta-banner {
    padding: 38px 0;
  }
}

/* ─────────────────────────────────────────────────────────────
   TOTAL BEAUTY CARE SECTION
───────────────────────────────────────────────────────────── */
.beauty-care-section {
  background: var(--cream);
  overflow: hidden;
}

.beauty-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.beauty-care-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 440px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.beauty-care-card:hover .beauty-care-img-wrap img {
  transform: scale(1.08);
}
.beauty-care-card:hover .beauty-care-overlay {
  background: rgba(198, 98, 100, 0.72);
}
.beauty-care-card:hover .beauty-care-content {
  transform: translateY(0);
  opacity: 1;
}
.beauty-care-card:hover .beauty-care-icon {
  background: rgba(255, 255, 255, 0.25);
}

.beauty-care-img-wrap {
  position: absolute;
  inset: 0;
}
.beauty-care-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.beauty-care-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 10, 10, 0.85) 0%,
    rgba(30, 10, 10, 0.3) 60%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.beauty-care-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  color: white;
  transform: translateY(8px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}
.beauty-care-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.3s ease;
  backdrop-filter: blur(6px);
}
.beauty-care-icon svg {
  color: white;
}
.beauty-care-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}
.beauty-care-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 18px;
}
.beauty-care-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: border-color 0.3s, gap 0.3s;
}
.beauty-care-link:hover {
  gap: 11px;
  border-color: white;
}
.beauty-care-link svg {
  transition: transform 0.25s;
}
.beauty-care-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .beauty-care-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .beauty-care-card {
    min-height: 360px;
  }
}
@media (max-width: 768px) {
  .beauty-care-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .beauty-care-card {
    min-height: 300px;
  }
}

/* ─────────────────────────────────────────────────────────────
   FEATURED SERVICES (BENTO GRID)
───────────────────────────────────────────────────────────── */
.featured-services-section {
  background: var(--white);
}

.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.fs-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fs-card--large {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 560px;
}
.fs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.fs-card:hover .fs-card-bg {
  transform: scale(1.06);
}

.fs-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.fs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 5, 5, 0.88) 0%,
    rgba(20, 5, 5, 0.2) 55%,
    transparent 100%
  );
  z-index: 1;
}
.fs-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 28px;
  z-index: 2;
  color: white;
}
.fs-card--large .fs-card-body {
  padding: 32px 32px 36px;
}

.fs-tag {
  display: inline-block;
  background: rgba(229, 144, 143, 0.8);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}
.fs-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.fs-card--large .fs-card-body h3 {
  font-size: 2rem;
}
.fs-card-body p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 14px;
}
.fs-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
  display: inline-block;
  transition: letter-spacing 0.25s;
}
.fs-card:hover .fs-link {
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .featured-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fs-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .featured-services-grid {
    grid-template-columns: 1fr;
  }
  .fs-card--large {
    min-height: 280px;
  }
  .fs-card {
    min-height: 220px;
  }
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS SLIDER
───────────────────────────────────────────────────────────── */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 8px;
  touch-action: pan-y;
  user-select: none;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
}
.testimonials-slider:active {
  cursor: grabbing;
}

.testimonials-slider .testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-rose);
  z-index: 10;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--deep-rose);
  color: white;
  transform: translateY(-50%) scale(1.08);
}
.slider-btn--prev {
  left: -20px;
}
.slider-btn--next {
  right: -20px;
}
.slider-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(198, 98, 100, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--deep-rose);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .testimonials-slider .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 640px) {
  .testimonials-slider .testimonial-card {
    flex: 0 0 100%;
  }
  .slider-btn--prev {
    left: -8px;
  }
  .slider-btn--next {
    right: -8px;
  }
}

/* ─────────────────────────────────────────────────────────────
   EXTRA ANIMATIONS & MICRO-INTERACTIONS
───────────────────────────────────────────────────────────── */
/* Pulsing badge */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 98, 100, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(198, 98, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 98, 100, 0);
  }
}
.hero-badge {
  animation: pulse-ring 3s ease-out infinite;
}

/* Floating blob animation */
@keyframes blob-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}
.hero-home::before {
  animation: blob-float 7s ease-in-out infinite;
}
.hero-home::after {
  animation: blob-float 9s ease-in-out infinite 1.5s;
}

/* Number counter glow */
.hero-stat .num {
  transition: color 0.3s;
}
.hero-stat:hover .num {
  color: var(--rose);
}

/* Feature icon spin on hover */
.feature-item:hover .feature-icon svg {
  transform: rotate(12deg) scale(1.1);
  transition: transform 0.3s ease;
}

/* Step number pop */
.step-num {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-item:hover .step-num {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(198, 98, 100, 0.45);
}

/* Service card shimmer */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.service-card::after,
.treatment-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.service-card:hover::after,
.treatment-card:hover::after {
  animation: shimmer 0.7s ease;
}
.service-card,
.treatment-card {
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   LEGAL PAGES (Privacy Policy / Terms of Service)
───────────────────────────────────────────────────────────── */
.legal-doc {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(229, 144, 143, 0.15);
  padding: 56px;
  box-shadow: var(--shadow-sm);
}
.legal-intro {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(229, 144, 143, 0.2);
  margin-bottom: 36px;
}
.legal-intro p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(229, 144, 143, 0.12);
}
.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--deep-rose);
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0 10px;
  font-family: var(--font-body);
}
.legal-section p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 14px 8px;
}
.legal-list li {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.legal-list li::before {
  content: "✓";
  color: var(--deep-rose);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.legal-contact {
  background: var(--cream);
  border-left: 3px solid var(--deep-rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 16px;
}
.legal-contact p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 768px) {
  .legal-doc {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   V3 HOMEPAGE — NEW SECTIONS CSS
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO V2 (Full-width bg image) ── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15, 5, 5, 0.82) 0%,
    rgba(15, 5, 5, 0.55) 55%,
    rgba(15, 5, 5, 0.2) 100%
  );
}
.hero-v2__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: 72px;
  gap: 40px;
}
.hero-v2__content {
  flex: 1;
  max-width: 580px;
}
.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.hero-v2__eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--rose);
  display: inline-block;
}
.hero-v2__title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
}
.hero-v2__title em {
  font-style: italic;
  color: var(--rose);
}
.hero-v2__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-v2__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* Feature badges (bottom-right of hero) */
.hero-v2__badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.hero-v2__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 18px 12px 12px;
  min-width: 230px;
  transition: var(--transition);
}
.hero-v2__badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-4px);
}
.hero-v2__badge img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-v2__badge strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 2px;
}
.hero-v2__badge span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(229, 144, 143, 0.15);
  box-shadow: 0 4px 24px rgba(198, 98, 100, 0.07);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.stats-strip__item {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  transition: background var(--transition);
}
.stats-strip__item:hover {
  background: rgba(229, 144, 143, 0.06);
}
.stats-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(229, 144, 143, 0.25);
}
.stats-strip__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--deep-rose);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-strip__lbl {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
}

/* ── ABOUT / MISSION ── */
.about-mission {
  background: var(--white);
}
.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-mission__visuals {
  position: relative;
  height: 540px;
}
.am-img--main {
  width: 75%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.am-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.am-img--accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.am-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.am-badge {
  position: absolute;
  top: 28px;
  right: 98px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.am-badge__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.am-badge__lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 4px;
}

.about-mission__content h2 {
  margin-bottom: 16px;
}
.about-mission__content > p {
  margin-bottom: 28px;
}

.am-mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.am-mv-card {
  display: flex;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid rgba(229, 144, 143, 0.15);
  transition: var(--transition);
}
.am-mv-card:hover {
  border-color: rgba(229, 144, 143, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.am-mv-icon {
  width: 38px;
  height: 38px;
  background: rgba(229, 144, 143, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-mv-icon svg {
  color: var(--deep-rose);
}
.am-mv-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.am-mv-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

.am-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.am-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.am-bullet__icon {
  width: 22px;
  height: 22px;
  background: rgba(229, 144, 143, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.am-bullet__icon svg {
  color: var(--deep-rose);
}
.am-bullet p {
  font-size: 0.92rem;
  margin: 0;
}

/* ── TREATMENTS HOME (4-col card grid) ── */
.treat-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.thc {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(229, 144, 143, 0.12);
  cursor: pointer;
}
.thc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 144, 143, 0.4);
}
.thc__img-wrap {
  height: 200px;
  overflow: hidden;
}
.thc__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.thc:hover .thc__img-wrap img {
  transform: scale(1.08);
}
.thc__foot {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.thc__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 4px;
}
.thc__foot h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
.thc__arrow {
  width: 38px;
  height: 38px;
  background: rgba(229, 144, 143, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-rose);
  flex-shrink: 0;
  transition: var(--transition);
}
.thc:hover .thc__arrow {
  background: var(--deep-rose);
  color: #fff;
  transform: translateX(3px);
}

/* ── SPLIT CARE ── */
.split-care {
  background: var(--white);
}
.split-care__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-care__visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sc-img--main {
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-md);
}
.sc-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sc-img--sub {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 180px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.sc-img--sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-sub-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(198, 98, 100, 0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.split-care__content > p {
  margin-bottom: 16px;
}
.sc-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.sc-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229, 144, 143, 0.12);
  background: var(--cream);
  transition: var(--transition);
}
.sc-feature-item:hover {
  border-color: rgba(229, 144, 143, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.sc-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(229, 144, 143, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-feature-icon svg {
  color: var(--deep-rose);
}
.sc-feature-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.sc-feature-item p {
  font-size: 0.83rem;
  margin: 0;
  color: var(--text-light);
}

/* ── BENEFITS SECTION ── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.benefits-left h2 {
  margin-bottom: 16px;
}
.benefits-left p {
  margin-bottom: 0;
}
.benefits-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229, 144, 143, 0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 144, 143, 0.35);
}
.benefit-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(229, 144, 143, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-card__icon svg {
  color: var(--deep-rose);
}
.benefit-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-weight: 600;
}
.benefit-card p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── PROGRAMS SECTION ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prog-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prog-card:hover .prog-card__bg {
  transform: scale(1.06);
}
.prog-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.prog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 5, 5, 0.9) 0%,
    rgba(20, 5, 5, 0.25) 55%,
    transparent 100%
  );
  z-index: 1;
}
.prog-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prog-card__sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.prog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.prog-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--rose);
  border-radius: 50%;
  color: #fff;
  align-self: flex-start;
  margin-top: 8px;
  transition: var(--transition);
}
.prog-card:hover .prog-card__btn {
  background: var(--deep-rose);
  transform: translateX(5px);
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  margin-bottom: 16px;
}
.faq-left p {
  margin-bottom: 0;
}
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(229, 144, 143, 0.2);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid rgba(229, 144, 143, 0.2);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 4px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover {
  color: var(--deep-rose);
}
.faq-item.open .faq-q {
  color: var(--deep-rose);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--deep-rose);
  transition: transform 0.35s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 4px;
}
.faq-item.open .faq-a {
 max-height: 300px;
  padding: 0 4px 20px;
}
.faq-chevron {
  transition: transform 0.35s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-item.open .faq-q {
  color: var(--deep-rose);
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   V3 RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .treat-home-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .hero-v2__badges {
    display: none;
  }
  .about-mission__grid,
  .split-care__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-mission__visuals {
    height: 360px;
  }
  .am-img--main {
    width: 80%;
    height: 320px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .treat-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-strip__item:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-v2__inner {
    padding-bottom: 52px;
  }
  .hero-v2__title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }
  .treat-home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .thc__img-wrap {
    height: 160px;
  }
  .sc-sub-row {
    grid-template-columns: 1fr;
  }
  .benefits-list-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .prog-card {
    min-height: 300px;
  }
  .am-img--accent {
    display: none;
  }
  .am-badge {
    top: 12px;
    right: 12px;
  }
  .split-care__visuals {
    gap: 12px;
  }
  .sc-img--main {
    height: 240px;
  }
  .sc-img--sub {
    height: 140px;
  }
  .faq-q {
    font-size: 0.88rem;
    padding: 16px 4px;
  }
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-v2__actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-v2__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .treat-home-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .thc__img-wrap {
    height: 130px;
  }
  .thc__foot {
    padding: 12px 14px;
  }
  .thc__foot h3 {
    font-size: 0.9rem;
  }
  .am-mv-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO V3 — Cinematic with animated entrance
   ═══════════════════════════════════════════════════════════════ */

/* Entry keyframes */
@keyframes hv3SlideUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hv3FadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hv3CardIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.04);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}
@keyframes scrollBob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}
@keyframes pillPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 144, 143, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(229, 144, 143, 0);
  }
}

.hv3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background */
.hv3__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hv3__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hv3__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10, 3, 3, 0.88) 0%,
    rgba(10, 3, 3, 0.65) 50%,
    rgba(10, 3, 3, 0.18) 100%
  );
}
.hv3__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.35;
  pointer-events: none;
}

/* Ambient orbs */
.hv3__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hv3__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(229, 144, 143, 0.18) 0%,
    transparent 70%
  );
  animation: orbFloat 12s ease-in-out infinite;
}
.hv3__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(198, 98, 100, 0.14) 0%,
    transparent 70%
  );
  animation: orbFloat 16s ease-in-out infinite 2s;
}

/* Inner layout */
.hv3__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 685px;
  padding-top: 110px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Copy / Left side */
.hv3__copy {
  flex: 1;
  max-width: 600px;
}

.hv3__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: hv3SlideUp 0.7s ease both, pillPulse 3s ease-in-out 1.5s infinite;
}
.hv3__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--rose);
}

.hv3__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 24px;
}
.hv3__line {
  display: block;
  animation: hv3SlideUp 0.8s ease both;
}
.hv3__line:nth-child(2) {
  animation-delay: 0.12s;
}
.hv3__line--em {
  font-style: italic;
  color: var(--rose);
  animation-delay: 0.24s;
}

.hv3__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
  animation: hv3SlideUp 0.8s ease 0.35s both;
}

.hv3__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: hv3SlideUp 0.8s ease 0.5s both;
}
.hv3__btn-primary {
  background: var(--deep-rose);
  color: #fff;
  box-shadow: 0 4px 24px rgba(198, 98, 100, 0.5);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.hv3__btn-primary:hover {
  background: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(198, 98, 100, 0.55);
}
.hv3__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}
.hv3__btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.hv3__play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mini stats */
.hv3__mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: hv3SlideUp 0.8s ease 0.65s both;
}
.hv3__mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.hv3__mini-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 3px;
  display: block;
}
.hv3__mini-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Right: Floating glass cards */
.hv3__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 260px;
  animation: hv3CardIn 0.9s ease 0.6s both;
}
.hv3__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  transition: var(--transition);
  cursor: default;
}
.hv3__card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateX(-5px);
}
.hv3__card--top {
  animation: hv3CardIn 0.8s ease 0.65s both;
}
.hv3__card--mid {
  animation: hv3CardIn 0.8s ease 0.8s both;
}
.hv3__card--bot {
  animation: hv3CardIn 0.8s ease 0.95s both;
}
.hv3__card img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.hv3__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(229, 144, 143, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv3__card-icon svg {
  color: var(--rose);
}
.hv3__card-info {
  flex: 1;
  min-width: 0;
}
.hv3__card-info strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  font-family: var(--font-body);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv3__card-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}
.hv3__card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Scroll cue */
.hv3__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: hv3FadeIn 1s ease 1.4s both;
}
.hv3__scroll-cue span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
  animation: scrollBob 1.8s ease-in-out infinite;
}
.hv3__scroll-cue p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* am-bubble */
.am-bubble {
  position: absolute;
  bottom: 60px;
  left: 70%;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-rose);
  white-space: nowrap;
  z-index: 3;
  animation: hv3SlideUp 0.6s ease 0.3s both;
}
.am-bubble svg {
  color: var(--deep-rose);
  flex-shrink: 0;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--deep-rose);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 20px;
  white-space: nowrap;
}
.marquee-track .sep {
  color: rgba(255, 255, 255, 0.45);
  padding: 0;
  font-size: 0.6rem;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ── ENHANCED TREATMENT CARD (hover overlay) ── */
.thc__img-wrap {
  position: relative;
}
.thc__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(198, 98, 100, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.thc:hover .thc__img-overlay {
  opacity: 1;
}
.thc__view-btn {
  padding: 10px 22px;
  background: #fff;
  color: var(--deep-rose);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.25s;
}
.thc__view-btn:hover {
  transform: scale(1.04);
}

/* ── CTA BANNER ORBS ── */
.cta-banner {
  overflow: hidden;
  position: relative;
}
.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__orb--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
  background: rgba(255, 255, 255, 0.07);
}
.cta-banner__orb--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 10%;
  background: rgba(255, 255, 255, 0.05);
}

/* ── HERO V3 RESPONSIVE ── */
@media (max-width: 1100px) {
  .hv3__cards {
    width: 230px;
  }
  .hv3__card-tag {
    display: none;
  }
}
@media (max-width: 900px) {
  .hv3__cards {
    display: none;
  }
  .hv3__inner {
    justify-content: flex-start;
  }
  .hv3__copy {
    max-width: 560px;
  }
}
@media (max-width: 640px) {
  .hv3__title {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
  }
  .hv3__actions {
    flex-direction: column;
    gap: 12px;
  }
  .hv3__btn-primary,
  .hv3__btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hv3__mini-stats {
    gap: 16px;
  }
  .hv3__mini-stat strong {
    font-size: 1.3rem;
  }
  .hv3__scroll-cue {
    display: none;
  }
  .am-bubble {
    display: none;
  }
}
