/* ===================================================
   Merry Land Ayurvedic Centre – Premium Landing Page Styles
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap");

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --clr-bg-deep: #0a1f1a;
  --clr-bg-mid: #0d2b23;
  --clr-bg-card: rgba(15, 50, 40, 0.45);
  --clr-bg-glass: rgba(15, 55, 42, 0.35);
  --clr-border-glass: rgba(193, 167, 103, 0.18);
  --clr-gold: #c1a767;
  --clr-gold-light: #dcc892;
  --clr-gold-dark: #8b7440;
  --clr-teal: #1a7a6d;
  --clr-teal-light: #2ab09b;
  --clr-green-soft: #1e5e4c;
  --clr-text: #e8e4dc;
  --clr-text-muted: #a8a298;
  --clr-text-dim: #7a7468;
  --clr-white: #faf8f4;
  --clr-accent-glow: rgba(193, 167, 103, 0.12);
  --clr-overlay: rgba(8, 24, 18, 0.72);

  /* Typography */
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Outfit", "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 6rem);
  --gap-sm: 0.75rem;
  --gap-md: 1.5rem;
  --gap-lg: 3rem;
  --gap-xl: 5rem;

  /* Borders */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.25s;
  --dur-mid: 0.45s;
  --dur-slow: 0.7s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg-deep);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  color: inherit;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--dur-mid) var(--ease-smooth),
    backdrop-filter var(--dur-mid) var(--ease-smooth),
    box-shadow var(--dur-mid) var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(10, 31, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
}

.nav__logo span {
  color: var(--clr-text);
  font-weight: 300;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast) var(--ease-smooth);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--dur-mid) var(--ease-smooth);
}

.nav__links a.no-underline::after {
  display: none;
}

.nav__links a:hover {
  color: var(--clr-gold);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 9999;
  padding: 12px;
  margin: -12px;
  box-sizing: content-box;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clr-gold);
  border-radius: 4px;
  transition:
    transform var(--dur-fast) var(--ease-smooth),
    opacity var(--dur-fast) var(--ease-smooth);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Section Shared ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section__label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section__label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--clr-gold);
}

.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.section__subtitle {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--clr-text-muted);
  max-width: 620px;
  line-height: 1.8;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--dur-slow) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity var(--dur-slow) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-smooth);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity var(--dur-slow) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-smooth);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity var(--dur-slow) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-bounce);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger > *:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger > *:nth-child(4) {
  transition-delay: 0.3s;
}
.stagger > *:nth-child(5) {
  transition-delay: 0.4s;
}
.stagger > *:nth-child(6) {
  transition-delay: 0.5s;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 26, 0.4) 0%,
    rgba(10, 31, 26, 0.65) 50%,
    var(--clr-bg-deep) 100%
  );
  z-index: 1;
}

/* Animated floating leaves */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.15;
  animation: floatLeaf linear infinite;
}

.leaf svg {
  width: 100%;
  height: 100%;
  fill: var(--clr-gold);
}

@keyframes floatLeaf {
  0% {
    transform: translateY(110vh) rotate(0deg) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-20vh) rotate(360deg) scale(1);
    opacity: 0;
  }
}

/* Oil ripple effect */
.hero__ripple {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.ripple-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(193, 167, 103, 0.15);
  animation: ripple 4s ease-out infinite;
}

.ripple-ring:nth-child(2) {
  animation-delay: 1s;
}
.ripple-ring:nth-child(3) {
  animation-delay: 2s;
}
.ripple-ring:nth-child(4) {
  animation-delay: 3s;
}

@keyframes ripple {
  0% {
    transform: scale(0.3);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero__tagline {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-smooth) 0.3s forwards;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-smooth) 0.6s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero__desc {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-smooth) 0.9s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--dur-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg-deep);
  box-shadow: 0 4px 20px rgba(193, 167, 103, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(193, 167, 103, 0.45);
}

.btn--outline {
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(193, 167, 103, 0.1);
  transform: translateY(-2px);
}

.btn--glass {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--clr-text);
}

.btn--glass:hover {
  background: rgba(15, 55, 42, 0.55);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ead55;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--call {
  background: var(--clr-teal);
  color: var(--clr-white);
}

.btn--call:hover {
  background: var(--clr-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 176, 155, 0.3);
}

.hero__cta {
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-smooth) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text-dim);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease-smooth) 1.5s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===================================================
   IMBALANCE SECTION
   =================================================== */
.imbalance {
  background: linear-gradient(
    180deg,
    var(--clr-bg-deep) 0%,
    var(--clr-bg-mid) 100%
  );
}

.imbalance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

.imbalance__card {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--dur-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.imbalance__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(193, 167, 103, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-smooth);
}

.imbalance__card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(193, 167, 103, 0.12);
}

.imbalance__card:hover::before {
  opacity: 1;
}

.imbalance__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(193, 167, 103, 0.1);
  border: 1px solid rgba(193, 167, 103, 0.2);
  transition: all var(--dur-mid) var(--ease-smooth);
}

.imbalance__card:hover .imbalance__icon {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.imbalance__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--dur-fast) var(--ease-smooth);
}

.imbalance__card:hover .imbalance__icon svg {
  stroke: var(--clr-bg-deep);
}

.imbalance__card-title {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.imbalance__card-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about {
  background: var(--clr-bg-mid);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(193, 167, 103, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.about__text {
  max-width: 540px;
}

.about__story {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-gold-light);
  line-height: 1.5;
  margin-bottom: var(--gap-md);
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--clr-gold);
}

.about__desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--gap-lg);
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--dur-mid) var(--ease-smooth);
}

.about__highlight:hover {
  border-color: rgba(193, 167, 103, 0.35);
  transform: translateX(8px);
}

.about__highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(193, 167, 103, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__highlight-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
}

.about__highlight h4 {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}

.about__highlight p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border-glass);
}

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

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.about__image-badge .number {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--clr-gold);
  line-height: 1;
}

.about__image-badge .label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ===================================================
   TREATMENTS SECTION
   =================================================== */
.treatments {
  background: linear-gradient(
    180deg,
    var(--clr-bg-mid) 0%,
    var(--clr-bg-deep) 100%
  );
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
  align-items: start;
}

.treatment__card {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease-smooth);
}

.treatment__card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.treatment__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.treatment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.treatment__card:hover .treatment__image img {
  transform: scale(1.08);
}

.treatment__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 31, 26, 0.9) 100%
  );
}

.treatment__body {
  padding: 1.5rem;
}

.treatment__name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.treatment__short {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.treatment__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  padding: 0;
  cursor: pointer;
}

.treatment__toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 2;
  transition: transform var(--dur-mid) var(--ease-smooth);
}

.treatment__card.expanded .treatment__toggle svg {
  transform: rotate(180deg);
}

.treatment__details {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--dur-slow) var(--ease-smooth),
    padding var(--dur-slow) var(--ease-smooth);
}

.treatment__card.expanded .treatment__details {
  max-height: 1000px;
}

.treatment__details-inner {
  padding: 0 1.5rem 1.5rem;
}

.treatment__details-inner p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.treatment__details-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.treatment__details-inner ul li {
  font-size: 0.85rem;
  color: var(--clr-text);
  padding-left: 1.25rem;
  position: relative;
}

.treatment__details-inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
}

/* ===================================================
   EXPERIENCE / TIMELINE SECTION
   =================================================== */
.experience {
  background: var(--clr-bg-deep);
  position: relative;
}

.experience::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(26, 122, 109, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.timeline {
  margin-top: var(--gap-lg);
  position: relative;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-gold),
    var(--clr-gold),
    transparent
  );
  transform: translateX(-50%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
  align-items: center;
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 3;
  text-align: left;
}

.timeline__item:nth-child(even) .timeline__image-wrap {
  grid-column: 1;
  grid-row: 1;
}

.timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-bg-deep);
  border: 2px solid var(--clr-gold);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-mid) var(--ease-smooth);
}

.timeline__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-smooth);
}

.timeline__item.visible .timeline__dot::after {
  opacity: 1;
}

.timeline__image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border-glass);
  aspect-ratio: 16/10;
  max-width: 380px;
}

.timeline__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.timeline__item:hover .timeline__image-wrap img {
  transform: scale(1.05);
}

.timeline__time {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.timeline__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===================================================
   DOCTORS SECTION
   =================================================== */
.doctors {
  background: linear-gradient(
    180deg,
    var(--clr-bg-deep) 0%,
    var(--clr-bg-mid) 100%
  );
}

.doctors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

.doctor__card {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all var(--dur-mid) var(--ease-smooth);
}

.doctor__card:hover {
  border-color: rgba(193, 167, 103, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.doctor__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 2px solid var(--clr-gold);
  padding: 3px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-teal));
}

.doctor__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor__name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}

.doctor__title {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.doctor__quote {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text-muted);
  line-height: 1.6;
  position: relative;
  padding: 0 0.5rem;
}

.doctor__quote::before {
  content: '"';
  font-family: var(--ff-serif);
  font-size: 3rem;
  color: var(--clr-gold);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  line-height: 1;
}

/* ===================================================
   TRANSFORMATION SECTION
   =================================================== */
.transformation {
  background: var(--clr-bg-mid);
  position: relative;
  overflow: hidden;
}

.transformation::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(193, 167, 103, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

.transformation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

.transform__card {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--dur-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.transform__card:hover {
  border-color: rgba(193, 167, 103, 0.35);
  transform: translateY(-4px);
}

.transform__before {
  margin-bottom: 1.5rem;
}

.transform__before-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: 0.5rem;
}

.transform__before-state {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  opacity: 0.6;
}

.transform__arrow {
  margin: 0 auto 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(193, 167, 103, 0.1);
  border: 1px solid rgba(193, 167, 103, 0.2);
  animation: arrowPulse 2s var(--ease-smooth) infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(193, 167, 103, 0.2);
  }
}

.transform__arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 2;
}

.transform__after-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.transform__after-state {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-gold-light);
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta {
  background: linear-gradient(180deg, var(--clr-bg-mid), var(--clr-bg-deep));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(193, 167, 103, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.cta__title em {
  color: var(--clr-gold-light);
  font-style: italic;
}

.cta__subtitle {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto var(--gap-lg);
  line-height: 1.8;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Decorative Mandala */
.cta__mandala {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.04;
  animation: rotateMandala 60s linear infinite;
}

.cta__mandala--left {
  top: 10%;
  left: -5%;
}

.cta__mandala--right {
  bottom: 10%;
  right: -5%;
}

@keyframes rotateMandala {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--clr-bg-deep);
  border-top: 1px solid rgba(193, 167, 103, 0.1);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-mid) var(--ease-smooth);
}

.footer__social a:hover {
  border-color: var(--clr-gold);
  background: rgba(193, 167, 103, 0.1);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-text-muted);
  transition: fill var(--dur-fast) var(--ease-smooth);
}

.footer__social a:hover svg {
  fill: var(--clr-gold);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .treatments__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .transformation__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .about__visual {
    order: -1;
    justify-content: center;
  }

  .about__image-frame {
    max-width: 360px;
  }

  .timeline__line {
    left: 24px;
  }

  .timeline__item {
    grid-template-columns: auto 1fr;
    gap: var(--gap-md);
  }

  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
    text-align: left;
  }

  .timeline__item:nth-child(even) .timeline__image-wrap {
    grid-column: 2;
    grid-row: auto;
  }

  .timeline__image-wrap {
    grid-column: 2;
    max-width: 100%;
  }

  .timeline__content {
    grid-column: 2;
  }

  .timeline__dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 1.25rem;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 31, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 9990;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.1rem;
  }

  .nav__hamburger {
    display: flex;
  }

  .treatments__grid,
  .doctors__grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta__buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 3rem;
    position: relative;
  }

  .timeline__line {
    left: 12px;
  }

  .timeline__dot {
    position: absolute;
    left: 0;
    top: 0;
  }

  .timeline__image-wrap {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .imbalance__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-green-soft);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-teal);
}

/* ---------- Pricing Section ---------- */
.pricing__container {
  width: 100%;
  overflow-x: auto;
  margin-top: var(--gap-md);
  padding: 0 1rem;
}

.pricing__table-wrapper {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 900px;
  margin: 0 auto;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing__table th,
.pricing__table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(193, 167, 103, 0.15);
}

.pricing__table th {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--clr-gold);
  font-weight: 500;
}

.pricing__table td {
  font-size: 0.95rem;
  color: var(--clr-text);
  vertical-align: top;
}

.pricing__table tr:last-child td {
  border-bottom: none;
}

.pricing__table td strong {
  color: var(--clr-white);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--ff-sans);
  font-size: 1.05rem;
}

.price-tag {
  display: inline-block;
  background: rgba(193, 167, 103, 0.12);
  color: var(--clr-gold-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin: 0.25rem 0.5rem 0.25rem 0;
  border: 1px solid rgba(193, 167, 103, 0.2);
  font-family: var(--ff-sans);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pricing__table th,
  .pricing__table td {
    padding: 1rem 0.5rem;
  }
  .pricing__table th {
    font-size: 1.1rem;
  }
  .pricing__table td {
    font-size: 0.9rem;
  }
  .price-tag {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(193, 167, 103, 0.3);
  color: var(--clr-white);
}

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all var(--dur-mid) var(--ease-bounce);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
