:root {
  --forest: #102418;
  --herb: #2d7a3a;
  --leaf: #6aaa72;
  --mist: #e2e8e0;
  --cream: #fcfaf5;
  --bark: #7d5a3c;
  --slate: #4a4a4a;
}

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

body.loading {
  overflow: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--cream);
  color: var(--forest);
  selection-background: var(--herb);
  selection-color: #fff;
}

/* Page Loader - Minimal Modern */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  letter-spacing: 0.4em;
  color: white;
  opacity: 0;
  transform: translateY(15px);
  animation: fade-in-up 1s ease-out 0.3s forwards;
  margin-bottom: 1rem;
}

.loader-subtext {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-in-up 0.8s ease-out 0.8s forwards;
  margin-bottom: 0.5rem;
}

.loader-subtext-centre {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-in-up 0.8s ease-out 1.1s forwards;
}

@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Header Refinement */
.site-header nav {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(16, 36, 24, 0.82) !important;
  backdrop-filter: blur(20px);
  padding-block: 0.35rem !important;
}

.nav-link-modern {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link-modern:hover {
  color: white;
}

.nav-link-modern:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-button-header {
  background: var(--leaf);
  color: var(--forest);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button-header:hover {
  background: white;
  transform: scale(1.05);
}

/* Hero Section */
.animate-slide-up {
  animation: slide-up 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.btn-bespoke-white {
  background: white;
  color: var(--forest);
  padding: 1.2rem 2.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: all 0.4s ease;
}

.btn-bespoke-white:hover {
  background: var(--leaf);
  color: white;
  transform: translateY(-5px);
}

.btn-bespoke-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1.2rem 2.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: all 0.4s ease;
}

.btn-bespoke-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* About Section */
.modern-about-box {
  background: white;
  box-shadow: 0 40px 100px -30px rgba(16, 36, 24, 0.05);
}

/* Cards & Components */
.doctor-card-premium {
  transition: all 0.5s ease;
}

.doctor-card-premium h4 {
  transition: color 0.4s ease;
}

.doctor-card-premium:hover h4 {
  color: var(--herb) !important;
}


.product-entry {
  transition: all 0.5s ease;
}

.product-entry:hover h4 {
  color: var(--herb);
}

/* Lightbox & Other Fixes */
.lightbox {
  background: rgba(16, 36, 24, 0.98);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .font-display {
    line-height: 1.1;
  }
}

/* Utility */
.shadow-3xl {
  box-shadow: 0 50px 100px -20px rgba(16, 36, 24, 0.15);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



.product-card {
  overflow: hidden;
}

.product-image,
.blog-card__image {
  height: 15rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106, 170, 114, 0.16), rgba(125, 90, 60, 0.12));
}

.product-placeholder,
.blog-placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--forest);
  font-size: 3rem;
}

.product-body,
.blog-card__body {
  padding: 1.35rem;
}

.product-price {
  font-weight: 800;
  color: var(--bark);
}

.stat-card {
  padding: 1.5rem;
}

.stat-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--forest);
}

.stat-card__label {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--slate);
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #d4a92c;
}

.testimonial-condition {
  margin-top: 0.4rem;
  font-weight: 700;
  color: var(--herb);
}

.testimonial-text {
  margin-top: 1rem;
  line-height: 1.8;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 66, 40, 0.12);
  color: var(--forest);
  box-shadow: 0 12px 30px rgba(26, 66, 40, 0.08);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-tile {
  min-height: 11rem;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(26, 66, 40, 0.08);
  background: linear-gradient(135deg, rgba(106, 170, 114, 0.22), rgba(245, 242, 235, 0.82));
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(26, 66, 40, 0.08);
}

.gallery-tile span {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: end;
  justify-content: start;
  padding: 1rem;
  text-align: left;
}

.gallery-tile--emerald { grid-column: span 5; }
.gallery-tile--sage { grid-column: span 7; }
.gallery-tile--sand { grid-column: span 7; }
.gallery-tile--bark { grid-column: span 5; }

.blog-card__body span {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-map {
  width: 100%;
  min-height: 28rem;
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 18px 50px rgba(26, 66, 40, 0.12);
}

.contact-card {
  padding: 1.6rem;
}

.contact-lines {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-lines span {
  display: inline-block;
  min-width: 5rem;
  font-weight: 800;
  color: var(--forest);
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 9999px;
  background: #22c55e;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.35);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(6, 18, 11, 0.98);
}

.page-loader__card {
  width: min(82vw, 34rem);
  aspect-ratio: 1 / 1;
}

.page-loader__svg {
  width: 100%;
  height: 100%;
}

.loader-part,
.page-loader__text {
  fill: none;
  stroke: #21c35a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader-star {
  fill: rgba(33, 195, 90, 0.08);
}

.page-loader__text {
  fill: #21c35a;
  stroke: none;
  opacity: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-anchor: middle;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 17, 11, 0.84);
}

.lightbox.hidden {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: white;
  color: var(--forest);
  font-size: 1.4rem;
}

.lightbox__frame {
  width: min(92vw, 64rem);
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
}

.lightbox__image {
  width: 100%;
  max-height: 74vh;
  object-fit: cover;
}

.lightbox__placeholder {
  min-height: 38rem;
  background: linear-gradient(135deg, rgba(106, 170, 114, 0.45), rgba(125, 90, 60, 0.2));
}

.lightbox__caption {
  margin: 0;
  padding: 1rem 1.2rem 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

@media (max-width: 1024px) {
  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    justify-self: center;
  }

  .gallery-tile--emerald,
  .gallery-tile--sage,
  .gallery-tile--sand,
  .gallery-tile--bark {
    grid-column: span 12;
  }

  .wheel-wrap {
    min-height: 40rem;
  }
}

@media (max-width: 768px) {
  .section-shell {
    padding-top: 4rem;
  }

  .wheel-wrap {
    min-height: 58rem;
  }

  .wheel-item {
    width: 8.5rem;
    margin-left: -4.25rem;
    transform: rotate(calc(var(--index) * var(--slot-angle))) translateY(-8.3rem) rotate(calc(var(--index) * -1 * var(--slot-angle)));
  }
}

/* Refined clinic theme overrides */
body {
  color: var(--slate);
  background:
    radial-gradient(circle at 12% 8%, rgba(106, 170, 114, 0.18), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(125, 90, 60, 0.11), transparent 20%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 42%),
    linear-gradient(180deg, #fcfbf6 0%, #f5f1e8 100%);
  background-attachment: fixed;
}

@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 66, 40, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 66, 40, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 64%);
}

.site-header {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  border-radius: 0 !important;
  background: rgba(16, 36, 24, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-header nav {
  gap: 1rem;
}

.site-header img {
  box-shadow: 0 8px 26px rgba(26, 66, 40, 0.12);
}

.hero-section {
  margin: 0 auto;
  max-width: min(100% - 1rem, 82rem);
  border: 1px solid rgba(26, 66, 40, 0.08);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(245, 242, 235, 0.98), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(106, 170, 114, 0.16), transparent 24%);
  box-shadow: 0 26px 70px rgba(26, 66, 40, 0.08);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(26, 66, 40, 0.06);
  pointer-events: none;
}

.hero-panel {
  padding: clamp(0.5rem, 1vw, 1rem) 0;
}

.hero-panel h1 {
  max-width: 12ch;
  text-wrap: balance;
}

.hero-metrics {
  max-width: 40rem;
}

.hero-metrics .glass-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(26, 66, 40, 0.08);
  box-shadow: 0 10px 30px rgba(26, 66, 40, 0.05);
}

.clinic-plaque {
  max-width: 36rem;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(212, 232, 208, 0.42));
  border: 1px solid rgba(26, 66, 40, 0.09);
  box-shadow: 0 28px 60px rgba(26, 66, 40, 0.12);
  position: relative;
}

.clinic-plaque::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(26, 66, 40, 0.05);
  pointer-events: none;
}

.clinic-plaque__label,
.clinic-plaque__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bark);
}

.clinic-plaque__footer {
  padding-top: 0.9rem;
  color: var(--slate);
}

.brand-panel {
  margin-top: 0.85rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 242, 235, 0.75));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 40px rgba(26, 66, 40, 0.08);
}

.brand-panel__inner {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(26, 66, 40, 0.06);
  background:
    radial-gradient(circle at 50% 12%, rgba(106, 170, 114, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 242, 235, 0.8));
}

.brand-panel__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 56%, rgba(26, 66, 40, 0.03) 100%);
  pointer-events: none;
}

.brand-panel img {
  position: relative;
  z-index: 1;
}

.section-shell {
  position: relative;
  max-width: min(100% - 1rem, 82rem);
  margin: 1rem auto 0;
  padding: clamp(4rem, 6vw, 5.75rem) 1.5rem;
  border: 1px solid rgba(26, 66, 40, 0.07);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 252, 247, 0.9));
  box-shadow: 0 18px 50px rgba(26, 66, 40, 0.05);
}

.section-shell::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 6rem;
  height: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--herb), transparent);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 13ch;
}

.info-card,
.panel-card,
.visit-card,
.product-card,
.blog-card,
.testimonial-card,
.contact-card,
.stat-card,
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(26, 66, 40, 0.09);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 36px rgba(26, 66, 40, 0.06);
}

.info-card::before,
.panel-card::before,
.visit-card::before,
.product-card::before,
.blog-card::before,
.testimonial-card::before,
.contact-card::before,
.stat-card::before,
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.22rem;
  background: linear-gradient(90deg, var(--herb), rgba(106, 170, 114, 0.18));
}

.info-card:hover,
.visit-card:hover,
.product-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.condition-card:hover,
.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26, 66, 40, 0.12);
}

.info-card {
  padding: 1.45rem;
}

.info-card h3,
.visit-card h4,
.product-body h3,
.blog-card__body h3,
.testimonial-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 0.95;
}

.info-card p,
.product-body p,
.blog-card__body p,
.blog-card__body span,
.testimonial-card p,
.contact-lines p,
.visit-card p {
  color: var(--slate);
}

.doctor-chip,
.visit-schedule,
.product-price,
.section-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.flip-card__inner {
  min-height: 25.5rem;
}

.flip-card__face {
  padding: 1.4rem;
  border-radius: 1.35rem;
  background: rgba(255, 253, 248, 0.9);
}

.flip-card__face--back {
  background: linear-gradient(180deg, var(--forest), #14361f);
}

.doctor-avatar {
  box-shadow: inset 0 0 0 1px rgba(26, 66, 40, 0.08);
}

.doctor-chip {
  background: rgba(125, 90, 60, 0.08);
  color: var(--bark);
}

.visit-card {
  padding: 1.3rem;
}

.panel-card {
  padding: 1.35rem;
}

.wheel-wrap {
  margin-top: 1.2rem;
  min-height: 42rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88), rgba(212, 232, 208, 0.45)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 242, 235, 0.72));
  border: 1px solid rgba(26, 66, 40, 0.07);
}

.wheel-center {
  box-shadow: 0 24px 60px rgba(26, 66, 40, 0.18);
}

.wheel-item {
  box-shadow: 0 10px 24px rgba(26, 66, 40, 0.06);
}

.condition-card {
  border-radius: 1.05rem;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 8px 18px rgba(26, 66, 40, 0.05);
}

.product-image,
.blog-card__image {
  background: linear-gradient(135deg, rgba(106, 170, 114, 0.12), rgba(125, 90, 60, 0.1));
}

.product-body,
.blog-card__body,
.testimonial-card,
.contact-card {
  padding: 1.35rem;
}

.product-price {
  color: var(--bark);
  font-weight: 800;
}

.stat-card {
  padding: 1.4rem;
}

.stat-card__value {
  font-size: 3.2rem;
}

.carousel-track {
  padding-bottom: 0.35rem;
}

.testimonial-stars {
  margin-bottom: 0.4rem;
}

.gallery-tile {
  box-shadow: 0 12px 28px rgba(26, 66, 40, 0.06);
}

.contact-map {
  border-radius: 1.35rem;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(245, 242, 235, 0.92));
}

.floating-whatsapp {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-loader {
  background:
    radial-gradient(circle at top, rgba(106, 170, 114, 0.12), transparent 34%),
    linear-gradient(180deg, #08150d 0%, #132418 100%);
}

.page-loader__card {
  position: relative;
  width: min(90vw, 42rem);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.page-loader__brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  text-align: center;
}

.page-loader__brand-image {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
}

.page-loader__brand-copy {
  display: grid;
  gap: 0.15rem;
  color: #ecf7e7;
}

.page-loader__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.22em;
}

.page-loader__brand-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(236, 247, 231, 0.78);
}

.page-loader__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-part {
  fill: none;
  stroke: #36d46d;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader-ring--outer {
  stroke-width: 2.4;
}

.loader-ring--inner {
  stroke-width: 2.1;
  opacity: 0.9;
}

.loader-petal {
  opacity: 0.92;
}

.loader-star {
  fill: rgba(54, 212, 109, 0.07);
}

.loader-star--inner {
  opacity: 0.95;
}

.loader-core {
  fill: rgba(54, 212, 109, 0.08);
  stroke: #36d46d;
  stroke-width: 2.2;
}

@media (max-width: 1024px) {
  .hero-section,
  .section-shell {
    max-width: calc(100% - 1rem);
  }

  .site-header {
    top: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    border-radius: 1.5rem;
  }

  .clinic-plaque {
    max-width: none;
  }

  .section-shell {
    border-radius: 1.5rem;
    padding-inline: 1rem;
  }

  .section-shell::before {
    left: 1rem;
  }

  .flip-card__inner {
    min-height: 24rem;
  }

  .page-loader__brand-image {
    width: 6rem;
    height: 6rem;
  }

  /* Responsive button sizing for mobile */
  .btn-bespoke-white,
  .btn-bespoke-outline {
    padding: 0.9rem 1.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  /* Loader text scaling */
  .loader-text {
    font-size: 2rem;
    letter-spacing: 0.3em;
  }

  .loader-subtext {
    font-size: 0.6rem;
  }

  .loader-subtext-centre {
    font-size: 0.55rem;
  }
}

/* Small mobile refinements */
@media (max-width: 480px) {
  .btn-bespoke-white,
  .btn-bespoke-outline {
    padding: 0.8rem 1.4rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    width: 100%;
    text-align: center;
  }

  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

#contact {
  background-color: var(--forest) !important;
}

/* Treatments - Subsection (a): Panchakarma Interactive Wheel */
.wheel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
  --wheel-radius: -185px;
}

.wheel-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wheel-node:hover,
.wheel-node.active {
  background-color: var(--leaf) !important;
  color: var(--forest) !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 20px rgba(106, 170, 114, 0.5);
}

@media (max-width: 768px) {
  .wheel-container {
    --wheel-radius: -110px;
    margin-block: 0;
  }

  #wheel-center-panel {
    width: 140px !important;
    height: 140px !important;
    padding: 1rem !important;
  }

  #wheel-treatment-title {
    font-size: 0.95rem !important;
  }

  #wheel-treatment-desc {
    font-size: 0.55rem !important;
    max-width: 110px !important;
    margin-top: 0.25rem !important;
  }

  .wheel-node {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.55rem !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wheel-container {
    --wheel-radius: -150px;
    margin-block: 0;
  }

  #wheel-center-panel {
    width: 180px !important;
    height: 180px !important;
    padding: 1.25rem !important;
  }

  #wheel-treatment-title {
    font-size: 1.2rem !important;
  }

  #wheel-treatment-desc {
    font-size: 0.65rem !important;
    max-width: 140px !important;
    margin-top: 0.35rem !important;
  }

  .wheel-node {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.6rem !important;
  }
}

/* Treatments - Subsection (b): Conditions Treated */
.condition-card-premium {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.condition-card-premium:hover {
  box-shadow: 0 15px 40px rgba(106, 170, 114, 0.15);
}

/* Hamburger Toggle & Fullscreen Menu Overlay Styles */
#menu-toggle {
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#menu-toggle.menu-open {
  border-color: var(--leaf) !important;
}

#menu-toggle.menu-open #bar-1 {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--leaf);
}

#menu-toggle.menu-open #bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

#menu-toggle.menu-open #bar-3 {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--leaf);
}

#fullscreen-menu {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#fullscreen-menu.is-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#fullscreen-menu.is-active #menu-watermark-logo {
  transform: scale(1) rotate(0deg) !important;
}

.menu-overlay-link {
  position: relative;
  transition: all 0.4s ease;
}

.menu-overlay-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--leaf);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu-overlay-link:hover {
  color: var(--leaf) !important;
  transform: scale(1.05);
}

.menu-overlay-link:hover::after {
  width: 100%;
}

/* Enforce solid backgrounds to prevent body gradient leakage */
.bg-forest,
#treatments,
#stories,
#contact {
  background-color: var(--forest) !important;
  background-image: none !important;
}

/* Override Tailwind white text color classes to use high-contrast cream */
.text-white {
  color: var(--cream) !important;
}
.text-white\/90 {
  color: rgba(252, 250, 245, 0.9) !important;
}
.text-white\/80 {
  color: rgba(252, 250, 245, 0.8) !important;
}
.text-white\/70 {
  color: rgba(252, 250, 245, 0.7) !important;
}
.text-white\/60 {
  color: rgba(252, 250, 245, 0.6) !important;
}
.text-white\/50 {
  color: rgba(252, 250, 245, 0.5) !important;
}
.text-white\/40 {
  color: rgba(252, 250, 245, 0.4) !important;
}
.text-white\/30 {
  color: rgba(252, 250, 245, 0.3) !important;
}
.text-white\/20 {
  color: rgba(252, 250, 245, 0.2) !important;
}

/* Fancy Leafy Footer Styles */
.footer-link {
  transition: all 0.3s ease !important;
}

.footer-link:hover {
  color: var(--herb) !important;
  padding-left: 0.5rem;
}

.footer-link:hover i {
  opacity: 1 !important;
  color: var(--leaf) !important;
  transform: rotate(15deg);
}

.footer-link i {
  transition: all 0.3s ease !important;
}

.footer-social-btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.footer-social-btn:hover {
  transform: scale(1.1) rotate(8deg) !important;
  box-shadow: 0 0 15px rgba(52, 94, 55, 0.2) !important;
}

.back-to-top-btn {
  transition: all 0.3s ease !important;
}

.back-to-top-btn:hover {
  color: var(--herb) !important;
}

.back-to-top-btn:hover .h-8 {
  background-color: rgba(52, 94, 55, 0.08) !important;
  border-color: var(--herb) !important;
  color: var(--herb) !important;
  box-shadow: 0 0 15px rgba(52, 94, 55, 0.15) !important;
}

/* ─── Footer responsive consistency ─── */
@media (max-width: 768px) {
  footer .absolute {
    display: none;
  }
}

@media (max-width: 480px) {
  footer .grid {
    gap: 1.5rem !important;
  }

  footer h3 {
    margin-bottom: 0.25rem;
  }
}