/* ============ TOKENS ============ */
:root {
  --teal: #14555c; /* brand primary from logo */
  --teal-dark: #0e3d43;
  --teal-deep: #0a2e33;
  --teal-soft: #e8f0f0;
  --gold: #c9a24b; /* champagne accent */
  --ivory: #f6f1e7; /* base bg from logo */
  --cream: #fbf8f1; /* card bg */
  --sand: #ede4d3;
  --charcoal: #26302f;
  --muted: #5f6b6a;
  --line: rgba(20, 85, 92, 0.14);
  --shadow: 0 18px 50px -24px rgba(14, 61, 67, 0.45);
  --shadow-sm: 0 8px 24px -14px rgba(14, 61, 67, 0.4);
  --radius: 18px;
  --radius-sm: 12px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, Segoe UI, Roboto, sans-serif;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.alt {
  background: linear-gradient(180deg, var(--cream), #f3ecdd);
}
.center {
  text-align: center;
  margin-top: 36px;
}

/* ============ TYPE ============ */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-dark);
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.section__lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}
.accent {
  color: var(--teal);
  font-style: italic;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.28s ease;
  white-space: nowrap;
}
.btn--sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.btn--outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn--outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn--ghost {
  color: var(--teal-dark);
  background: rgba(20, 85, 92, 0.07);
}
.btn--ghost:hover {
  background: rgba(20, 85, 92, 0.14);
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--teal-deep);
  color: #dfeceb;
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar__item {
  opacity: 0.9;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}
.header.scrolled {
  box-shadow: 0 6px 30px -18px rgba(14, 61, 67, 0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 26px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: 0.28s;
}
.nav__link:hover {
  color: var(--teal);
}
.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../Public/logo/Hero.png") no-repeat center right / cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(246, 241, 231, 0.97) 0%,
      rgba(246, 241, 231, 0.9) 34%,
      rgba(246, 241, 231, 0.55) 52%,
      rgba(246, 241, 231, 0.08) 70%,
      transparent 100%
    ),
    linear-gradient(180deg, rgba(246, 241, 231, 0.4), transparent 30%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: block;
}
.hero__content {
  max-width: 620px;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  margin: 6px 0 18px;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}
.hero__promise {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--teal);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 34px;
  font-size: 0.9rem;
  color: var(--teal-dark);
}

.hero__visual {
  position: relative;
}
.hero__card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 10px;
}
.hero__card img {
  border-radius: 16px;
}
.hero__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 62% center;
}
.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -18px;
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero__badge strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  display: block;
  color: var(--gold);
}
.hero__badge span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* ============ STRIP ============ */
.strip {
  background: var(--teal);
  color: #eaf3f2;
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 24px;
  text-align: center;
}
.strip__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #fff;
}
.strip__item span {
  font-size: 0.82rem;
  opacity: 0.8;
}

/* ============ DOCTOR ============ */
.doctor__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
.doctor__media {
  display: flex;
  flex-direction: column;
}
.doctor__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doctor__photo {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(170deg, var(--teal-soft), var(--sand));
  padding: 0;
  border: 1px solid var(--line);
  min-height: 0;
}
.doctor__photo img {
  border-radius: 12px;
}
.doctor__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius) !important;
}
.doctor__quals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.doctor__quals span {
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  border-left: 3px solid var(--gold);
}
.doctor__body p {
  color: var(--muted);
  margin-top: 16px;
}
.doctor__expertise {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}
.doctor__expertise li {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--teal-dark);
}

/* ============ GRIDS / CARDS ============ */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
}
.card__icon {
  font-size: 1.8rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  border-radius: 14px;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* WHY */
.why__item {
  padding: 8px 4px;
}
.why__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.why__item h3 {
  font-size: 1.25rem;
  margin: 6px 0 6px;
}
.why__item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* TREATMENTS */
.tcard {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.tcard:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.tcard h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.tcard p {
  color: var(--muted);
  font-size: 0.93rem;
  flex: 1;
}
.tcard__link {
  margin-top: 16px;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.9rem;
}
.tcard__link:hover {
  color: var(--gold);
}
.tcard--cta {
  background: var(--teal);
  color: #eaf3f2;
  justify-content: center;
  text-align: center;
}
.tcard--cta h3 {
  color: #fff;
}
.tcard--cta p {
  color: #cfe1e0;
}

/* JOURNEY */
.journey__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.jstep {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
}
.jstep__no {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.jstep h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.jstep p {
  color: var(--muted);
  font-size: 0.86rem;
}

/* TECH */
.tech {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  border-top: 3px solid var(--teal);
}
.tech h3 {
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.tech p {
  color: var(--muted);
  font-size: 0.95rem;
}
.tech ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech ul li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--teal-dark);
}
.tech ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.tech__img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin: 0 auto 18px;
  display: block;
}

/* TECH DETAIL PAGE */
.techdetail__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.techdetail__media {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.techdetail__media img {
  max-width: 100%;
  max-height: 320px;
  margin: 0 auto;
  object-fit: contain;
}
.techdetail__imgnote {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.techdetail__body p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1rem;
}
.techdetail__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal-dark) !important;
}
.techdetail__note {
  background: var(--teal-soft);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 22px 0;
  font-size: 0.9rem;
  color: var(--teal-dark);
}
.techdetail__note strong {
  color: var(--teal);
}
@media (max-width: 960px) {
  .techdetail__inner {
    grid-template-columns: 1fr;
  }
  .techdetail__media {
    position: static;
  }
}

/* NEW TECHNOLOGIES */
.techcard {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
.techcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.techcard__media {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.techcard__media img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
}
.techcard__body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.techcard__body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.techcard__body p {
  color: var(--muted);
  font-size: 0.93rem;
  flex: 1;
}
.techcard__body .tcard__link {
  margin-top: 16px;
}

/* GALLERY */
.gallery__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--teal-dark);
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.85rem;
  transition: 0.25s;
}
.chip:hover,
.chip.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.gtile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--teal-soft), var(--sand));
  transition: 0.3s;
  margin: 0;
}
.gtile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gtile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(10, 46, 51, 0.72) 100%
  );
}
.gtile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gtile:hover img {
  transform: scale(1.06);
}
.gtile__cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}
.gtile__cap span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
.gtile__cap small {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.66rem;
  opacity: 0.85;
}
.disclaimer {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* TESTIMONIALS */
.quote {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote p {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.5;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

/* BLOG */
.bcard {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.bcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.bcard__tag {
  align-self: flex-start;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.bcard h3 {
  font-size: 1.18rem;
  flex: 1;
}
.bcard .tcard__link {
  margin-top: 16px;
}

/* FAQ */
.faq__inner {
  max-width: 840px;
  margin: 0 auto;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.acc__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-dark);
  position: relative;
  padding-right: 52px;
}
.acc__q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  transition: 0.3s;
}
.acc.open .acc__q::after {
  transform: translateY(-50%) rotate(45deg);
}
.acc__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc__a p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CONTACT */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cinfo {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cinfo__ic {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cinfo strong {
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.cinfo p {
  color: var(--muted);
  font-size: 0.92rem;
}
.cinfo a {
  color: var(--teal);
}
.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact__form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.contact__form h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--teal-dark);
  margin-bottom: 14px;
  font-weight: 400;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  transition: 0.25s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 85, 92, 0.12);
}
.consent {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 6px 0 16px;
}
.opt {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}
.form-note {
  margin-top: 14px;
  color: var(--teal);
  font-weight: 500;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact__form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

/* FOOTER */
.footer {
  background: var(--teal-deep);
  color: #c6d6d5;
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer__logo {
  width: 64px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fff;
  padding: 6px;
}
.footer__brand p {
  font-size: 0.9rem;
  color: #a9bfbe;
  max-width: 300px;
}
.footer__col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: #a9bfbe;
  padding: 5px 0;
  transition: 0.2s;
}
.footer__col a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer__addr {
  font-size: 0.85rem;
  color: #a9bfbe;
  margin-top: 12px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #94a9a8;
}
.footer__legal a:hover {
  color: var(--gold);
}

/* MOBILE STICKY BAR */
.mobilebar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px -14px rgba(14, 61, 67, 0.4);
}
.mobilebar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 4px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal-dark);
}
.mobilebar__btn span {
  font-size: 1.15rem;
}
.mobilebar__btn--wa {
  color: #128c7e;
}
.mobilebar__btn--book {
  background: var(--teal);
  color: #fff;
  margin: 6px;
  border-radius: 12px;
}

/* ============ REVEAL ANIM ============ */
.section .card,
.section .tcard,
.section .jstep,
.section .tech,
.section .techcard,
.section .quote,
.section .bcard,
.section .why__item,
.gtile {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in .card,
.reveal.in .tcard,
.reveal.in .jstep,
.reveal.in .tech,
.reveal.in .techcard,
.reveal.in .quote,
.reveal.in .bcard,
.reveal.in .why__item,
.reveal.in .gtile {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    background: var(--ivory);
    padding: 20px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: 0.35s;
    box-shadow: var(--shadow);
  }
  .nav.open {
    transform: translateY(0);
  }
  .nav__link {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle {
    display: flex;
  }
  .header__cta .btn {
    display: none;
  }
  .doctor__inner,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__content {
    max-width: 100%;
  }
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .journey__track {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .topbar__inner {
    justify-content: center;
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }
  .grid--3,
  .grid--4,
  .grid--2,
  .journey__track {
    grid-template-columns: 1fr;
  }
  .strip__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .mobilebar {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
  .hero__actions .btn {
    flex: 1;
  }
  .topbar {
    display: none;
  }
}
/*read more cards*/
.bcard__content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.3s ease;
}
.bcard__content.open {
  max-height: 300px;
  margin-top: 10px;
}
.bcard__toggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.grid--4 {
  align-items: start;
}
/* Treatments section: cards equal height ke saath */
#treatments .grid--4 {
  align-items: stretch;
}
.tcard__link {
  margin-top: auto;
}

/* Blog section: cards apni height independent rahe (collapsible ke liye) */
#blog .grid--4 {
  align-items: start;
}
