/* ====================================================================
   ADVANCE COSMOCARE — DESIGN SYSTEM
   Palette: Deep Teal (#0A3C36) + Crimson Red (#E52329) + Pure White (#FFFFFF) + Soft Mint (#F2F7F6)
   Type: Cormorant Garamond (display) / Plus Jakarta Sans (body)
   Signature: Arched clinical dome frames, floating badges, and high-contrast clinical teal-red gradients.
   ==================================================================== */

:root {
  --white: #ffffff;
  --black: #000000;
  --teal: #000000;
  --teal-dark: #ffffff;
  --teal-soft: #b89564;
  --red: #000000;
  --red-hover: #b89564;
  --mint-bg: #ffffff;
  --mint-card: #ffffff;
  --mint-divider: #eaeaea;
  --ink: #1a1a1a;
  --ink-soft: #666666;
  --gold: #b89564;
  --gold-bright: #c5a880;
  --transparent: #00000000;

  --grad-brand: linear-gradient(135deg, #ffffff, #faf9f6);
  --grad-accent: linear-gradient(135deg, #000000, #222222);
  --grad-deep: linear-gradient(160deg, #fdfcfb 0%, #f7f5f0 100%);
  --grad-glow: radial-gradient(circle, rgba(184, 149, 100, 0.06), transparent 65%);

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 16px 50px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 24px 70px rgba(184, 149, 100, 0.12);
  --shadow-red-glow: 0 8px 24px rgba(0, 0, 0, 0.05);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --maxw: 1180px;

  --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--mint-bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tech Grid and Mesh background glow */
.tech-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(var(--teal-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal-soft) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.glow-blob {
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
}

.glow-teal {
  background: var(--teal-soft);
  top: -12%;
  right: -8%;
}

.glow-red {
  background: var(--red);
  bottom: -15%;
  left: -8%;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: var(--teal-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

/* .eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
} */

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.eyebrow.center {
  justify-content: center;
}

.btn {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border-radius: 4px;
  padding: .8rem 1.8rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-block;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
}

.btn-primary {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-contrast {
  background: var(--teal-soft);
  border: 1px solid var(--teal-soft);
  color: var(--black);
  font-weight: 600;
}

.btn-primary-contrast:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-ghost:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  border: 1px solid var(--mint-divider);
  color: var(--black);
}

.btn-light:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-dark);
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: 0 0 8px 0;
  z-index: 999;
}

.skip:focus {
  left: 0;
}

/* Sparkles removed for custom clinical tech layout */

/* TOP BAR */
.top-bar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  padding: 10px 0;
  z-index: 101;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tb-left,
.tb-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-left svg,
.tb-right svg {
  color: var(--teal-soft);
  /* Gold */
  flex-shrink: 0;
}

.tb-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  transition: var(--transition-smooth);
}

.tb-phone:hover {
  color: var(--white);
}

.tb-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}

.tb-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tb-social a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.tb-social a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* NAV */
.nav {
  position: fixed;
  top: var(--top-bar-height, 38px);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 40px);
  background: var(--white);
  border-bottom: 1px solid var(--mint-divider);
  transition: top 0.3s, padding 0.3s, background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  top: 0;
  padding: 12px clamp(20px, 5vw, 40px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  color: var(--black);
  text-decoration: none;
}

.brand .mark {
  height: 90px;
  width: auto;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  padding-left: 14px;
  text-align: left;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--black);
  text-transform: uppercase;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.20em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1.5px;
  background: var(--teal-soft);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--teal-soft);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: 0.3s;
  border-radius: 2px;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* HERO */
.hero {
  position: relative;
  padding: clamp(120px, 17vh, 180px) 0 clamp(60px, 9vh, 110px);
  overflow: hidden;
  background: var(--grad-deep);
  border-bottom: 1px solid rgba(184, 149, 100, 0.25);
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -12%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 62%);
  filter: blur(8px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 48vw;
  height: 48vw;
  max-width: 620px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 65%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
  color: var(--teal-soft);
}

.hero-copy {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.7rem);
  color: var(--black);
  margin-bottom: 22px;
  text-align: center;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-soft);
}

.hero h1 .glow {
  background: linear-gradient(135deg, var(--teal-soft) 30%, var(--black) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  display: inline;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 35em;
  margin-bottom: 22px;
  text-align: center;
}

.hero .cities {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 30px;
}

.hero .cities .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-soft);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}


.trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-item b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--black);
}

.trust-item span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

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

.trust-sep {
  width: 1px;
  height: 38px;
  background: rgba(0, 0, 0, 0.1);
}

.dome-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: min(420px, 88%);
  aspect-ratio: 1/1.16;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--mint-divider);
  padding: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visual-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.visual-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--grad-deep);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.6s ease;
}

.visual-frame:hover img {
  transform: scale(1.03);
}

.visual-frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(255, 255, 255, 0.15), transparent 55%), linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
  mix-blend-mode: screen;
  pointer-events: none;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--teal-soft);
  border-radius: 32px;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.badge-float {
  position: absolute;
  background: var(--mint-card);
  border: 1px solid var(--mint-divider);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.badge-float .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mint-bg);
  color: var(--teal);
  flex: none;
}

.badge-float b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1;
}

.badge-float small {
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.badge-a {
  top: 8%;
  left: -6%;
}

.badge-b {
  bottom: 9%;
  right: -7%;
}

@media (max-width: 560px) {
  .badge-a {
    left: -2%;
  }

  .badge-b {
    right: -2%;
  }
}

/* STRIP */
.strip {
  background: #090909;
  border-top: 1px solid rgba(184, 149, 100, 0.15);
  border-bottom: 1px solid rgba(184, 149, 100, 0.15);
  color: var(--white);
  padding: 24px 0;
}

.strip-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(184, 149, 100, 0.25);
}

.strip-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-soft);
}

.strip-icon {
  width: 38px;
  height: 38px;
  stroke: var(--teal-soft);
}

.strip-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.strip-text h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.strip-text p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.sp.tw {
  animation: none;
}
}

/* HOMOEOPATHY STRIP */
.homoeo-strip {
  background: #faf9f6;
  border-bottom: 1px solid var(--mint-divider);
  padding: 40px 0;
  overflow: hidden;
}

.homoeo-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  align-items: center;
  gap: 40px;
}

.homoeo-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-sizing: border-box;
}

.homoeo-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.homoeo-tag {
  color: var(--teal-soft);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

.homoeo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.homoeo-content p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.homoeo-list-wrap {
  border-left: 1px solid rgba(184, 149, 100, 0.25);
  padding-left: 40px;
}

.homoeo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.homoeo-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.homoeo-list .check-icon {
  width: 18px;
  height: 18px;
  stroke: var(--teal-soft);
  flex-shrink: 0;
}

/* SECTIONS */
section {
  position: relative;
}

.section {
  padding: clamp(70px, 11vh, 120px) 0;
  border-bottom: 1px solid rgba(184, 149, 100, 0.25);
}

.section-head {
  max-width: 660px;
  margin-bottom: 54px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  color: var(--black);
  margin: 18px 0 16px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--teal-soft);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.bg-mint-lilac {
  background: var(--white);
}

/* SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc {
  background: var(--mint-card);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mint-divider);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.svc::before {
  display: none;
}

.svc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--teal-soft);
}

.svc .ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(184, 149, 100, 0.08);
  display: grid;
  place-items: center;
  color: var(--teal-soft);
  margin-bottom: 22px;
  transition: background 0.3s, color 0.3s;
}

.svc:hover .ico {
  background: var(--black);
  color: var(--white);
}

.svc .ico svg {
  width: 28px;
  height: 28px;
}

.svc h3 {
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.svc:hover h3 {
  color: var(--teal-soft);
}

.svc p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.svc .more {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-soft);
  display: inline-flex;
  gap: 0.4em;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

.svc:hover .more {
  color: var(--red);
  transform: translateX(4px);
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--mint-card);
  border-radius: 24px;
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mint-divider);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.team-portrait {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1.16;
  border-radius: 50% 50% 24px 24px / 62% 62% 24px 24px;
  background: var(--grad-deep);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.team-card h3 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: 12px;
}

.team-card .qualifications {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.about-portrait {
  position: relative;
}

.about-portrait .visual-frame {
  width: min(400px, 100%);
  margin: 0 auto;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin: 16px 0 18px;
}

.about-copy h2 em {
  font-style: italic;
  color: var(--teal-soft);
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about-copy p strong {
  color: var(--black);
  font-weight: 600;
}

.qual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 24px;
}

.qual-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-soft);
  background: var(--mint-bg);
  border: 1px solid rgba(22, 94, 84, 0.14);
  padding: 0.5em 1em;
  border-radius: 50px;
}

.cred-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
}

.cred-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
}

.cred-list .tick {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 1px;
}

/* WHY */
#why {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 9vh, 90px) 0;
}

#why .section-head h2 {
  color: var(--white);
}

#why .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

#why .eyebrow {
  color: var(--teal-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why {
  padding: 34px 28px;
  border-radius: 16px;
  background: #111111;
  border: 1px solid rgba(184, 149, 100, 0.15);
  text-align: left;
  transition: transform 0.35s, border-color 0.3s, box-shadow 0.3s;
}

.why:hover {
  transform: translateY(-6px);
  border-color: var(--teal-soft);
  box-shadow: var(--shadow-glow);
}

.why .n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
  display: inline-block;
  margin-bottom: 12px;
  width: 100%;
}

.why .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 149, 100, 0.1);
  display: grid;
  place-items: center;
  color: var(--teal-soft);
  margin: 14px 0 16px;
}

.why h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* RESULTS */
.bg-deep {
  background: var(--grad-deep);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.bg-deep .section-head h2 {
  color: var(--black);
}

.bg-deep .section-head h2 em {
  color: var(--teal-soft);
}

.bg-deep .section-head p {
  color: var(--ink-soft);
}

.bg-deep .eyebrow {
  color: var(--teal-soft);
}

.bg-deep .eyebrow::before,
.bg-deep .eyebrow.center::after {
  background: var(--teal-soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gtile {
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--grad-brand);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.gtile:nth-child(2) {
  background: linear-gradient(150deg, var(--teal), var(--teal-dark));
}

.gtile:nth-child(3) {
  background: linear-gradient(150deg, var(--teal-soft), var(--teal));
}

.gtile:nth-child(4) {
  background: linear-gradient(150deg, var(--red), var(--teal-dark));
}

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

.gtile .lbl {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.gtile .mk {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  opacity: 0.55;
}

.ig-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  text-align: center;
}

/* TESTIMONIALS */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tst {
  background: var(--mint-card);
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mint-divider);
  position: relative;
}

.tst .q {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--black);
  opacity: 0.1;
  height: 24px;
}

.tst p {
  color: var(--ink);
  font-size: 1rem;
  margin: 6px 0 22px;
}

.tst .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tst .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-body);
}

.tst .who b {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
}

.tst .who small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.tst .stars {
  display: block;
  margin-bottom: 14px;
}

/* FAQ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--mint-divider);
  transition: border-color 0.3s;
}

.faq-item.open {
  border-bottom-color: var(--teal-soft);
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 24px 48px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--black);
  transition: color 0.25s;
}

.faq-q:hover {
  color: var(--teal-soft);
}

.faq-q .pm {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}

.faq-q .pm::before,
.faq-q .pm::after {
  content: "";
  position: absolute;
  background: var(--teal-soft);
  transition: background 0.3s;
}

.faq-q .pm::before {
  width: 12px;
  height: 2px;
}

.faq-q .pm::after {
  width: 2px;
  height: 12px;
}

.faq-item.open .pm {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.open .pm::before {
  background: var(--red);
}

.faq-item.open .pm::after {
  transform: scale(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  padding: 0 40px 24px 0;
  color: var(--ink-soft);
}

/* CONTACT / LOCATIONS */
.booking-bar {
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(26px, 3.5vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 100, 0.25);
}

.booking-bar::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 149, 100, 0.15), transparent 65%);
  pointer-events: none;
}

.booking-bar .bb-info {
  position: relative;
  z-index: 1;
}

.booking-bar h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}

.booking-bar .hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.booking-bar .hours svg {
  width: 18px;
  height: 18px;
  color: var(--teal-soft);
  flex: none;
}

.booking-bar .bb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.loc-grid {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.loc-card {
  background: var(--mint-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mint-divider);
  display: flex;
  flex-direction: column;
}

.loc-card .body {
  padding: 30px 30px 26px;
}

.loc-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-soft);
  background: rgba(184, 149, 100, 0.08);
  border: 1px solid rgba(184, 149, 100, 0.25);
  padding: 0.45em 0.9em;
  border-radius: 50px;
  margin-bottom: 14px;
}

.loc-card h3 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 12px;
}

.loc-card address {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.loc-card .row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--black);
  font-weight: 600;
}

.loc-card .row svg {
  width: 18px;
  height: 18px;
  color: var(--teal-soft);
}

.loc-card .acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.loc-card .map {
  margin-top: auto;
  line-height: 0;
}

.loc-card .map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer .brand {
  color: #fff;
  margin-bottom: 18px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 14px;
}

.footer .brand .mark {
  height: 90px;
  width: auto;
  border: none;
}

.footer .brand-text {
  border-left: none;
  padding-left: 0;
  text-align: center;
  align-items: center;
}

.footer .brand-title {
  color: #fff;
  font-size: 1.65rem;
}

.footer .brand-subtitle-footer {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-soft);
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-transform: none;
  display: block;
}

.footer .brand small {
  color: var(--teal-soft);
}

.foot-about p {
  margin-bottom: 20px;
}

.foot-branch-item {
  margin-top: 10px;
}

.foot-timings {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.foot-about {
  font-size: 0.92rem;
  max-width: 30em;
}

.foot-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.foot-col ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.foot-col li {
  font-size: 0.9rem;
  line-height: 1.5;
}

.foot-col a {
  transition: color 0.25s;
}

.foot-col a:hover {
  color: var(--teal-soft);
}

.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.foot-social a:hover {
  background: var(--teal-soft);
  color: var(--black);
  border-color: var(--teal-soft);
  transform: translateY(-3px);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sp.tw {
    animation: none;
  }
}

@media (max-width: 980px) {

  .brand .mark {
    height: 60px;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.16em;
  }

  .brand-text {
    padding-left: 12px;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-cta {
    gap: 0;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    border-top: 1px solid var(--mint-divider);
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open a {
    display: block;
    padding: 14px 28px;
  }

  .nav-links.open a::after {
    display: none;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    order: -1;
  }

  .svc-grid,
  .tst-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-grid {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-wrap {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px 20px;
  }

  .strip-item:not(:last-child)::after {
    display: none;
  }

  .homoeo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .homoeo-list-wrap {
    border-left: none;
    border-top: 1px solid rgba(184, 149, 100, 0.2);
    padding-left: 0;
    padding-top: 30px;
  }

  .homoeo-img {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {

  .brand .mark {
    height: 48px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-text {
    padding-left: 8px;
  }

  .svc-grid,
  .tst-grid,
  .team-grid,
  .why-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .trust {
    gap: 16px;
  }

  .trust-sep {
    display: none;
  }

  .hero-actions .btn {
    flex: 1;
  }
}

/* ====================================================================
   SERVICE CARD DETAIL LINK & INTERACTIVE BEFORE-AFTER SLIDER
   ==================================================================== */
.svc-card-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.result-image-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mint-divider);
  background: var(--white);
}

.result-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

/* Slide arrows styling */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--mint-divider);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  outline: none;
  padding: 0;
}

.slide-arrow:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

@media (max-width: 480px) {
  .slide-arrow {
    width: 36px;
    height: 36px;
  }
  .prev-arrow {
    left: 10px;
  }
  .next-arrow {
    right: 10px;
  }
}

/* Detail page grid layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 980px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Clinical case tabs */
.case-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.tab-btn {
  background: var(--white);
  border: 1px solid var(--mint-divider);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.tab-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

/* Blended layouts for combined Benefits & Areas section */
.blend-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 980px) {
  .blend-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blend-column-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.blend-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.benefits-vlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-vitem {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--mint-divider);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-vitem:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--mint-bg);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-vcontent h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 6px;
}

.benefit-vcontent p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.areas-category-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area-category-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--mint-divider);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-tag {
  display: inline-block;
  background: rgba(184, 149, 100, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.area-category-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 14px;
}

.area-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-badge {
  background: var(--mint-bg);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--mint-divider);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: default;
}

.area-badge:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}