/* ============================================================
   Holistic Multispeciality Clinic â€” Main Stylesheet
   Author: Antigravity AI
   ============================================================ */

/* â”€â”€â”€ CSS CUSTOM PROPERTIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --forest-50: #f0faf4;
  --forest-100: #d9f2e3;
  --forest-500: #2D9A6B;
  --forest-600: #2D6A4F;
  --forest-700: #1f4d38;
  --gold-300: #f0d080;
  --gold-400: #D4AF37;
  --gold-500: #b8961e;
  --cream-50: #FFFEF9;
  --cream-100: #FEF9F0;
  --teal-800: #0F4C5C;
  --teal-900: #0a3342;
  --indigo-50: #F0EFFE;
  --indigo-500: #4F46E5;
  --sage-100: #e8f0e0;
  --sage-400: #87A96B;
  --burgun-900: #3D0C11;
  --slate-900: #0F172A;
  --nav-height: 76px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

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

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

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--forest-600);
  border-radius: 10px;
}

/* â”€â”€â”€ SECTION UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading-dark {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0.75rem 0 1rem;
}

.section-heading-light {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0.75rem 0 1rem;
}

.section-sub-dark {
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-sub-light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* â”€â”€â”€ BADGE COMPONENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.section-badge.green {
  background: var(--forest-100);
  color: var(--forest-600);
}

.section-badge.white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-badge.white-on-green {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section-badge.indigo {
  background: #ede9fe;
  color: var(--indigo-500);
}

.section-badge.gold {
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest-900);
}

/* â”€â”€â”€ GALLERY SWIPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-swiper-container {
  margin-top: 2rem;
  position: relative;
}

.gallery-swiper {
  padding-bottom: 3rem;
}

.gallery-swiper-slide .gallery-card {
  height: auto;
}

.gallery-swiper-pagination .swiper-pagination-bullet {
  background: var(--forest-500);
  opacity: 0.5;
}

.gallery-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.section-badge.sage {
  background: var(--sage-100);
  color: #4a7a40;
}

.section-badge.dark {
  background: #f3f4f6;
  color: #374151;
}

/* â”€â”€â”€ BUTTON COMPONENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-600);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
  background: var(--forest-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--forest-600);
  color: var(--forest-600);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--forest-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* â”€â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#navbar {
  /* Match hero section background: linear-gradient(160deg, #F5F0E8 â†’ #EBF5EE â†’ #F5F0E8) */
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  z-index: 99999 !important;
}

#navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.navbar-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo-emblem {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-emblem:hover {
  transform: scale(1.08) rotate(5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-clinic-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-600);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Real Logo Image â€” JPEG with white bg made seamless via mix-blend-mode */
.nav-logo-img {
  /* On cream/white backgrounds, 'multiply' makes white pixels invisible */
  mix-blend-mode: multiply;
  object-fit: contain;
  border-radius: 6px;
  /* Responsive sizing: 36px mobile â†’ 44px desktop */
  width: 36px;
  height: 36px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

/* Slightly enlarge on desktop */
@media (min-width: 768px) {
  .nav-logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .nav-logo-img {
    width: 44px;
    height: 44px;
  }
}

/* Footer logo â€” slightly larger and no blend needed (dark background footer uses luminosity) */
.footer-logo-img {
  mix-blend-mode: luminosity;
  filter: brightness(0) invert(1);
  /* makes it white on the dark footer */
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

/* Nav Pills */
.nav-pills-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-pills-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f4f4f5;
  border-radius: 100px;
  padding: 5px;
}

.nav-pill {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  padding: 7px 18px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-pill:hover {
  color: var(--forest-600);
  background: rgba(45, 106, 79, 0.08);
}

.nav-pill.active {
  background: #fff;
  color: var(--forest-600);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Call Now Button */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--forest-600);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(45, 106, 79, 0.3);
}

.call-now-btn:hover {
  background: var(--forest-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

/* Hamburger */
.hamburger-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger-btn:hover {
  background: #f3f4f6;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: #fff;
  z-index: 1000000 !important;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.close-drawer-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-drawer-btn:hover {
  background: #e8e8e8;
}

.mobile-nav {
  padding: 1rem 0;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 1.5rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: #333;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--forest-50);
  color: var(--forest-600);
  border-left-color: var(--forest-600);
}

.mobile-cta-group {
  padding: 1.5rem;
  display: flex;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
}

.mobile-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--forest-600);
  color: #fff;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-call-btn:hover {
  background: var(--forest-700);
}

.mobile-whatsapp-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-whatsapp-btn:hover {
  background: #1da851;
}

/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 999999 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.drawer-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* â”€â”€â”€ PHOTO HERO SECTION (Minimal) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.photo-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background photo */
.ph-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ph-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: ph-kenburns 14s ease-out forwards;
}

@keyframes ph-kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}

/* Dark cinematic overlay */
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 15, 10, 0.50) 0%,
    rgba(5, 15, 10, 0.62) 50%,
    rgba(5, 15, 10, 0.75) 100%
  );
}

/* Centred text block */
.ph-center-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Eyebrow â€” clinic name in large spaced capitals */
.ph-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.2;
}

/* Main title â€” Dr. name in large serif */
.ph-main-title {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

/* Separator line between eyebrow and title */
.ph-eyebrow::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-400);
  margin: 0.9rem auto 0;
  border-radius: 2px;
}

/* Single CTA button */
.ph-single-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.95rem 2.8rem;
  background: var(--forest-600);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.ph-single-btn:hover {
  background: var(--forest-500);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(45, 106, 79, 0.60);
}

/* Mobile */
@media (max-width: 600px) {
  .ph-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }
  .ph-main-title {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }
  .ph-single-btn {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }
}


/* ─── PREMIUM SPLIT HERO SECTION ─────────────────────────────────── */

.sh-section {
  position: relative;
  width: 100vw;
  min-height: 100dvh;
  background: #fdfbf7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-top: var(--nav-height, 80px);
  box-sizing: border-box;
}

/* Background aesthetic meshes / geometric lines */
.sh-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(45, 154, 107, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 154, 107, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.sh-section::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(45,154,107,0.06) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* ── LEFT (Text Content) ── */
.sh-left {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 2rem 4rem 2rem 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sh-clinic-name {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 1.2rem;
  line-height: 0.92;
}

.sh-name-line1,
.sh-name-line3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  display: block;
}

.sh-name-line2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--forest-600);
  display: block;
  text-shadow: 4px 4px 0px rgba(45, 154, 107, 0.08);
}

.sh-name-line3 {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.sh-name-line3::after {
  content: '.';
  color: var(--gold-400);
}

.sh-doctor-name {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--forest-700);
  margin: 0.5rem 0 1.5rem;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.sh-doctor-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-400);
  transform-origin: left;
  transform: scaleX(0);
  animation: grow-line 1s cubic-bezier(0.85, 0, 0.15, 1) forwards 0.8s;
}

@keyframes grow-line {
  to { transform: scaleX(1); }
}

.sh-credential {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-600);
  background: rgba(45, 154, 107, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  border: 1px solid rgba(45, 154, 107, 0.2);
  backdrop-filter: blur(4px);
}

.sh-tagline {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 500;
  color: #555;
  margin: 0 0 2.5rem;
  line-height: 1.7;
  max-width: 85%;
  border-left: 3px solid var(--forest-500);
  padding-left: 1.2rem;
  background: linear-gradient(90deg, rgba(45,154,107,0.05) 0%, transparent 100%);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0 8px 8px 0;
}

.sh-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.sh-btn-primary {
  background: var(--forest-600);
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
  border: 2px solid var(--forest-600);
}

.sh-btn-primary:hover {
  background: var(--forest-700);
  border-color: var(--forest-700);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.4);
}

.sh-btn-secondary {
  background: transparent;
  color: var(--teal-900);
  border: 2px solid var(--teal-900);
}

.sh-btn-secondary:hover {
  background: var(--teal-900);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 51, 66, 0.2);
}

/* ── RIGHT (Image & Elements) ── */
.sh-right {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 100%;
  min-height: calc(100dvh - var(--nav-height, 80px));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sh-img-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sh-doctor-img {
  position: relative;
  z-index: 2;
  height: 90%;
  max-height: calc(100dvh - var(--nav-height, 80px));
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}

/* Geometric Arch backdrop */
.sh-arc {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 75%;
  height: 85%;
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 50vw 50vw 0 0; /* Creates an arch */
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.sh-arc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(45, 106, 79, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 106, 79, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Spinning dashed ring behind doctor */
.sh-img-wrap::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -5%;
  width: 250px;
  height: 250px;
  border: 2px dashed var(--gold-400);
  border-radius: 50%;
  animation: sh-spin 30s linear infinite;
  z-index: 0;
  opacity: 0.6;
}

/* Floating geometric diamond */
.sh-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 5%;
  width: 70px;
  height: 70px;
  border: 4px solid var(--teal-800);
  transform: rotate(45deg);
  animation: sh-float-alt 8s ease-in-out infinite;
  z-index: 3;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
}

/* Plus pattern accent */
.sh-right::before {
  content: '++++\A++++\A++++';
  white-space: pre;
  position: absolute;
  top: 20%;
  left: 10%;
  font-family: monospace;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--forest-500);
  opacity: 0.3;
  letter-spacing: 5px;
  z-index: 5;
  animation: sh-pulse-opacity 4s infinite alternate;
}

@keyframes sh-pulse-opacity {
  0% { opacity: 0.1; }
  100% { opacity: 0.5; }
}

@keyframes sh-spin {
  100% { transform: rotate(360deg); }
}

@keyframes sh-float-alt {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-20px); }
}

.sh-float-card {
  position: absolute;
  left: 0;
  top: 35%;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.5);
  border-left: 5px solid var(--forest-500);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: sh-float 6s ease-in-out infinite;
}

@keyframes sh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.sh-float-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--forest-600);
  line-height: 1;
}

.sh-float-num sup {
  font-size: 1.2rem;
  color: var(--gold-400);
  vertical-align: super;
}

.sh-float-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Responsive: Tablet (max-width: 1024px) ── */
@media (max-width: 1024px) {
  .sh-section {
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .sh-left {
    width: 100%;
    padding: 3rem 5vw 1rem;
    align-items: center;
    text-align: center;
  }
  
  .sh-credential {
    align-self: center;
  }
  
  .sh-tagline {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 3px solid var(--forest-500);
    padding-left: 0;
    padding-top: 1rem;
    background: linear-gradient(180deg, rgba(45,154,107,0.05) 0%, transparent 100%);
    border-radius: 0 0 8px 8px;
  }
  
  .sh-cta-row {
    justify-content: center;
  }
  
  .sh-right {
    width: 100%;
    flex: 1;
    min-height: 45dvh;
  }
  
  .sh-arc {
    width: 80%;
    height: 90%;
    border-radius: 50vw 50vw 0 0;
    left: 10%;
    right: 10%;
  }

  .sh-float-card {
    left: 5%;
    top: 20%;
  }
  
  .sh-right::before {
    top: 10%;
    left: 5%;
  }
}

/* ── Responsive: Mobile (max-width: 768px) ── */
@media (max-width: 768px) {
  .sh-section {
    padding-top: calc(var(--nav-height, 60px) + 1rem);
  }

  .sh-left {
    padding: 1rem 1.5rem 0;
  }
  
  .sh-credential {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 1.5rem;
  }
  
  .sh-name-line1, .sh-name-line3 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }
  
  .sh-name-line2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    -webkit-text-stroke: 1px var(--forest-600);
    text-shadow: 2px 2px 0px rgba(45, 154, 107, 0.1);
  }
  
  .sh-doctor-name {
    font-size: 1.3rem;
  }
  
  .sh-tagline {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
    border-top: 2px solid var(--forest-500);
    padding-top: 0.8rem;
  }
  
  .sh-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .sh-btn {
    width: 100%;
    padding: 1rem;
  }
  
  .sh-right {
    min-height: 40dvh;
    margin-top: 1rem;
    align-items: flex-end;
  }
  
  .sh-doctor-img {
    height: 95%;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
  
  .sh-arc {
    width: 90%;
    height: 85%;
    border-radius: 50vw 50vw 0 0;
    left: 5%;
    right: 5%;
  }

  .sh-img-wrap::before {
    width: 150px;
    height: 150px;
    right: -10%;
  }

  .sh-img-wrap::after {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 2%;
  }

  .sh-right::before {
    display: none;
  }

  .sh-float-card {
    left: auto;
    right: 1rem;
    top: 5%;
    padding: 10px 14px;
    border-left: 3px solid var(--forest-500);
    transform: scale(0.9);
  }
  
  .sh-float-num {
    font-size: 1.6rem;
  }
  
  .sh-float-lbl {
    font-size: 0.65rem;
  }
}

/* â”€â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  min-height: 100dvh;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, #FFFEF9 0%, #f0faf4 35%, #e8f5ee 60%, #fef9f0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero Grid: 3 columns */
.hero-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px) 1fr;
  gap: 2rem;
  align-items: center;
}

/* Hero Left */
.hero-left {
  padding-right: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-100);
  color: var(--forest-600);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--forest-600);
}

.hero-subtext {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Hero Stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--forest-600);
  display: inline;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #d0d0d0;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Image Column */
.hero-image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 2rem;
  overflow: hidden;
  /*box-shadow: 0 24px 64px rgba(45,106,79,0.18), 0 8px 24px rgba(0,0,0,0.08);*/
  aspect-ratio: 3/4;
}

/* Before Image (base) */
.hero-img-before {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* After Image (revealed by clip-path from top) */
.hero-img-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(100% 0% 0% 0%);
  /* starts hidden â€” clips from bottom up */
  transition: clip-path 0.1s linear;
}

.hero-img-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Image Labels */
.img-label {
  position: absolute;
  z-index: 10;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  transition: opacity 0.4s ease;
}

.before-label {
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.after-label {
  top: 1rem;
  right: 1rem;
  background: var(--forest-600);
  color: #fff;
  opacity: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 500;
  animation: bounce-scroll 2s ease-in-out infinite;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.scroll-hint-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

@keyframes bounce-scroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Reveal Progress Track */
.reveal-progress-track {
  width: 100%;
  max-width: 340px;
  background: #e5e7eb;
  border-radius: 100px;
  height: 6px;
  position: relative;
  overflow: visible;
}

.reveal-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--forest-500), var(--gold-400));
  border-radius: 100px;
  transition: width 0.05s linear;
}

.reveal-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: #888;
  font-weight: 500;
}

.reveal-pct {
  color: var(--forest-600);
  font-weight: 700;
}

/* Hero Right */
.hero-right {
  padding-left: 1rem;
}

.hero-right-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.hero-right-heading {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-600);
  margin-bottom: 3px;
}

.hero-right-role {
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-right-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-treatments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 1.25rem;
}

.treatment-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--forest-50);
  color: var(--forest-600);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--forest-100);
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Hero Decorative Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  animation: float-blob 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--forest-100);
  top: -150px;
  left: -150px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: #fef3c7;
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}

.hero-blob-3 {
  width: 250px;
  height: 250px;
  background: var(--forest-50);
  top: 40%;
  left: 40%;
  animation-delay: 5s;
}

@keyframes float-blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

/* â”€â”€â”€ NEW CINEMATIC HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Architecture: Stacked canvas (display: block, all children absolute).
   Sizing:       dvh for heights, dvw for font-sizes â€” safe on mobile address bar.
   Breakpoints:  2 only â€” 768px (tablet), 1024px (desktop).
                 Within each type, clamp() + dvh/dvw handle all internal scaling.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.new-hero-section {
  position: relative;
  height: 100dvh;
  width: 100%;
  background: linear-gradient(160deg, #F5F0E8 0%, #EBF5EE 50%, #F5F0E8 100%);
  overflow: hidden;
  display: block;
}

/* Bottom gradient scrim â€” fades model into the CTA area */
.new-hero-section::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top,
      #EEF6F1 0%,
      rgba(238, 246, 241, 0.92) 20%,
      rgba(238, 246, 241, 0.6) 50%,
      transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* â”€â”€ Decorative blobs â€” fluid sizes so they don't overflow on small phones */
.nh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.nh-blob-1 {
  width: clamp(200px, 50dvw, 700px);
  height: clamp(200px, 50dvw, 700px);
  background: radial-gradient(circle, rgba(45, 154, 107, 0.10) 0%, transparent 70%);
  top: -15dvh;
  left: -10dvw;
}

.nh-blob-2 {
  width: clamp(150px, 35dvw, 480px);
  height: clamp(150px, 35dvw, 480px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  bottom: -5dvh;
  right: -8dvw;
}

/* â”€â”€ Gold horizontal rule lines */
.nh-rule {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.00) 4%,
      rgba(212, 175, 55, 0.55) 22%,
      rgba(212, 175, 55, 0.55) 78%,
      rgba(212, 175, 55, 0.00) 96%,
      transparent 100%);
  z-index: 6;
}

.nh-rule-top {
  top: calc(var(--nav-height) + 1.25rem);
}

.nh-rule-bottom {
  bottom: 1.5dvh;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HEAL BACKGROUND WORD
   Strategy: top is always the vertical CENTRE of the model image.
   Formula:  nav-height + margin-top + (model-height / 2)
   Mobile:   margin-top=90px, model-height=58% â†’ centre offset = 0.29
   This guarantees HEAL is centred BEHIND the model on every device.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nh-bg-word {
  position: absolute;
  /*
   * 80/20 Head-Overlap Rule:
   * top = the model's own top edge (nav-height + margin-top).
   * translateY(-80%) lifts HEAL up by 80% of its own height.
   * Result: 80% of HEAL is visible above the model, 20% hides behind the face.
   * This ratio is self-scaling â€” works on every screen size automatically.
   */
  top: calc(var(--nav-height) + 120px);
  left: 50%;
  transform: translate(-50%, -80%);
  font-family: 'Outfit', sans-serif;
  /* Mobile: ~12% smaller than tablet/desktop â€” clamp floor & fluid value reduced */
  font-size: clamp(7rem, 23dvw, 26rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(45, 106, 79, 0.09);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MODEL IMAGE CONTAINER
   Height-driven: takes 68% of content area (section minus navbar).
   Width auto-flows from aspect-ratio 3/4 â€” always correct portrait shape.
   Zero decoration â€” pure PNG, no border-radius, no shadow, no border.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nh-model-wrap {
  position: absolute;
  margin-top: 90px;
  top: var(--nav-height);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: calc((100dvh - var(--nav-height)) * 0.58);
  width: auto;
  aspect-ratio: 3 / 4;
  /* max-width: min(90vw, 360px); */
  /* overflow: hidden; */
  /* NO border-radius | NO box-shadow | NO border */
}

/* Model images â€” fill container absolutely */
.nh-model-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.nh-model-before {
  z-index: 1;
}

.nh-model-after {
  z-index: 2;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
  /* GPU composited â€” GSAP animates this on scroll */
}

/* â”€â”€ BEFORE / AFTER label badges */
.nh-badge {
  position: absolute;
  z-index: 10;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  pointer-events: none;
}

.nh-badge-before {
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}

.nh-badge-after {
  top: 1rem;
  right: 1rem;
  background: var(--forest-600);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.nh-badge-after.visible {
  opacity: 1;
}

/* â”€â”€ Scroll hint â€” animated mouse widget inside model wrap */
.nh-scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(45, 106, 79, 0.65);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: nh-hint-float 2.4s ease-in-out infinite;
}

.nh-hint-mouse {
  width: 18px;
  height: 28px;
  border: 2px solid rgba(45, 106, 79, 0.45);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.nh-hint-wheel {
  width: 2px;
  height: 5px;
  background: rgba(45, 106, 79, 0.55);
  border-radius: 2px;
  animation: nh-wheel-drop 2.4s ease-in-out infinite;
}

@keyframes nh-hint-float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
    opacity: 0.55;
  }
}

@keyframes nh-wheel-drop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BOTTOM CONTENT BAND
   Pinned to section floor (position: absolute; bottom: 0).
   z-index 4 â€” sits above the scrim (z-index 3).
   All 3 elements always visible: Tagline | Sub-text | 2 Buttons.
   All sizing uses clamp() with dvh/dvw so it scales on every device.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nh-bottom {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 4;
  text-align: center;
  padding:
    clamp(0.6rem, 1.5dvh, 1.25rem) clamp(1rem, 4dvw, 2.5rem) clamp(0.75rem, 2dvh, 2.5rem);
}

/* Tagline â€” medium size, readable on all devices */
.nh-tagline {
  font-family: 'Lora', serif;
  font-size: clamp(0.92rem, 2dvw, 1.4rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: clamp(0.2rem, 0.6dvh, 0.45rem);
}

.nh-tagline em {
  font-style: italic;
  color: var(--forest-600);
}

/* Sub-text â€” always visible on all 3 device types */
.nh-sub {
  font-size: clamp(0.7rem, 1.4dvw, 0.88rem);
  color: #555;
  line-height: 1.5;
  margin-bottom: clamp(0.5rem, 1.2dvh, 1.1rem);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* Button row â€” always 2 buttons, always side-by-side, never wrap */
.nh-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5dvw, 12px);
  flex-wrap: nowrap;
}

/* Primary button context â€” flex:1 so both buttons share space equally */
.nh-cta-row .btn-primary {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 200px;
  justify-content: center;
  font-size: clamp(0.75rem, 1.4dvw, 0.9rem);
  padding: clamp(0.45rem, 1dvh, 0.68rem) clamp(0.75rem, 1.8dvw, 1.3rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ghost button */
.nh-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 200px;
  color: var(--forest-600);
  font-size: clamp(0.75rem, 1.4dvw, 0.9rem);
  font-weight: 600;
  padding: clamp(0.45rem, 1dvh, 0.68rem) clamp(0.75rem, 1.8dvw, 1.3rem);
  border-radius: 100px;
  border: 2px solid rgba(45, 106, 79, 0.25);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nh-ghost-btn:hover {
  background: rgba(45, 106, 79, 0.08);
  border-color: rgba(45, 106, 79, 0.45);
  transform: translateY(-2px);
}

/* â”€â”€ Lotus ornament â€” bottom-right corner */
.nh-ornament {
  position: absolute;
  bottom: clamp(1rem, 2dvh, 2rem);
  right: clamp(1rem, 2dvw, 2rem);
  z-index: 5;
  opacity: 0.18;
  animation: nh-spin-slow 28s linear infinite;
}

@keyframes nh-spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE â€” Exactly 2 breakpoints
   Base (no query) = Mobile â€” any phone width (320px â†’ 767px)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Tablet: 768px and wider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 768px) {
  .nh-model-wrap {
    height: calc((100dvh - var(--nav-height)) * 0.70 - 50px);
    /* max-width: min(52vw, 400px); */
    margin-top: 110px;
  }

  .nh-bg-word {
    /* Tablet: model margin-top = 20px â€” anchor to model top, 80/20 overlap */
    top: calc(var(--nav-height) + 200px);
    font-size: clamp(8rem, 25dvw, 22rem);
    transform: translate(-50%, -80%);
  }

  .nh-bottom {
    bottom: 0px;
  }
}

/* â”€â”€ Desktop: 1024px and wider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 1024px) {
  .nh-model-wrap {
    height: calc((100dvh - var(--nav-height)) * 0.73 - 30px);
    /* max-width: 420px; */
    margin-top: 60px;
  }

  .nh-bg-word {
    /* Desktop: model margin-top = 30px â€” anchor to model top, 80/20 overlap */
    top: calc(var(--nav-height) + 200px);
    font-size: clamp(10rem, 24dvw, 26rem);
    transform: translate(-50%, -80%);
  }

  .nh-bottom {
    bottom: 0px;
  }

  .nh-ornament {
    opacity: 0.22;
  }
}



/* â”€â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section {
  padding: 6rem 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-card {
  background: linear-gradient(135deg, var(--forest-50), #fff);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--forest-100);
  position: relative;
  box-shadow: 0 16px 48px rgba(45, 106, 79, 0.1);
}

/* â”€â”€ About: Real Photo Cards â”€â”€ */
.about-photo-primary {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 20px 56px rgba(45, 106, 79, 0.22),
    0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.about-photo-primary:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 72px rgba(45, 106, 79, 0.28), 0 8px 28px rgba(0, 0, 0, 0.12);
}

.about-photo-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Green gradient overlay at the bottom of primary photo */
.about-photo-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(15, 35, 25, 0.75) 0%, transparent 100%);
  pointer-events: none;
}

/* Qualification badge â€” frosted glass, bottom of image */
.about-photo-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: left;
}

.about-photo-badge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-photo-badge-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.about-photo-badge-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-top: 1px;
}

/* Award floating card â€” positioned bottom-right of about-image-card */
.about-award-card {
  position: absolute;
  bottom: 1.5rem;
  right: -1.25rem;
  width: 130px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(45, 106, 79, 0.12);
  border: 2px solid rgba(212, 175, 55, 0.35);
  animation: float-card 5s ease-in-out infinite;
  animation-delay: 1.5s;
  z-index: 5;
}

.about-award-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-award-caption {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--forest-600);
  background: rgba(45, 106, 79, 0.05);
  border-top: 1px solid rgba(45, 106, 79, 0.1);
}

.about-award-icon {
  font-size: 0.9rem;
}

/* Responsive: on mobile, award card tucks in */
@media (max-width: 640px) {
  .about-award-card {
    right: 0.25rem;
    width: 110px;
  }

  .about-award-img {
    height: 90px;
  }

  .about-photo-primary {
    max-width: 100%;
  }

  .about-image-card {
    padding: 1.5rem 1rem;
  }
}

/* Premium Digital Certificate Styling */
.digital-certificate {
  background: #fffdf9;
  border-radius: 1.5rem;
  padding: 1.75rem;
  position: relative;
  border: 1.5px solid rgba(45, 106, 79, 0.18);
  box-shadow: 0 16px 40px rgba(45, 106, 79, 0.12), inset 0 0 50px rgba(254, 249, 240, 0.8);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  aspect-ratio: 1.4 / 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.digital-certificate:hover {
  transform: translateY(-8px) scale(1.03) rotate(0.5deg);
  box-shadow: 0 24px 50px rgba(45, 106, 79, 0.18);
}

.certificate-inner {
  height: 100%;
  width: 100%;
  position: relative;
  border: 2px solid var(--forest-600);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Inner gold border */
.certificate-inner::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold-400);
  pointer-events: none;
}

/* Corner ornaments */
.cert-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold-400);
  z-index: 2;
}

.cert-corner-tl {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.cert-corner-tr {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}

.cert-corner-bl {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}

.cert-corner-br {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

/* Watermark */
.cert-watermark {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.9;
}

/* Certificate Text styling */
.cert-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: space-between;
}

.cert-crest {
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.cert-authority {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--forest-700);
  text-transform: uppercase;
}

.cert-title {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-500);
  margin-top: 2px;
  text-transform: uppercase;
}

.cert-statement {
  font-size: 0.62rem;
  font-style: italic;
  color: #666;
  margin-top: 4px;
}

.cert-recipient {
  font-family: 'Lora', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest-600);
  margin: 4px 0;
  font-style: italic;
  text-shadow: 0.5px 0.5px 0 rgba(212, 175, 55, 0.25);
}

.cert-qualification {
  font-size: 0.58rem;
  color: #555;
  max-width: 90%;
  line-height: 1.4;
}

.cert-degree {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--forest-700);
  margin-top: 4px;
}

.cert-abbr {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: 0.08em;
}

/* Certificate Footer block */
.cert-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 10px;
  padding: 0 0.5rem;
}

.cert-signature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
}

.cert-sig-line {
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
  width: 100%;
  padding-bottom: 2px;
  text-align: center;
}

.cert-sig-font {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: #333;
  font-weight: 600;
  display: block;
}

.cert-sig-title {
  font-size: 0.58rem;
  color: #888;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Embossed Gold Seal style */
.cert-gold-seal-wrap {
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -6px;
}

.cert-gold-seal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe675 0%, #D4AF37 55%, #b38f1b 100%);
  border: 1.5px dashed #fff;
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.7);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.cert-gold-seal::after {
  content: 'â˜…';
  font-size: 0.7rem;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* Decorative ribbons */
.seal-ribbon {
  position: absolute;
  width: 8px;
  height: 20px;
  background: var(--forest-600);
  bottom: -12px;
  z-index: 4;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%);
}

.ribbon-left {
  left: 12px;
  transform: rotate(15deg);
  background: var(--forest-600);
}

.ribbon-right {
  right: 12px;
  transform: rotate(-15deg);
  background: var(--gold-500);
}

/* Floating element adaptation */
.about-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(45, 106, 79, 0.1);
  animation: float-card 5s ease-in-out infinite;
}

.float-card-1 {
  top: 20px;
  left: -30px;
}

.float-card-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 2.5s;
}

.float-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-600);
}

.float-lbl {
  font-size: 0.7rem;
  color: #888;
  font-weight: 500;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.leaf-deco {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
}

.leaf-1 {
  top: 10px;
  right: 10px;
  animation: spin-leaf 12s linear infinite;
}

.leaf-2 {
  bottom: 20px;
  left: 10px;
  animation: spin-leaf 10s linear infinite reverse;
}

@keyframes spin-leaf {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.about-content {}

.about-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

.credentials-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.credential-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--forest-100);
  color: var(--forest-600);
  display: flex;
  align-items: center;
  justify-content: center;
  shrink: 0;
  flex-shrink: 0;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.about-stat-box {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid var(--forest-100);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.about-stat-box .counter,
.about-stat-box span:first-child {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest-600);
}

.about-stat-box>span:last-child {
  display: block;
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
  margin-top: 3px;
}

.about-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 2px dashed rgba(45, 106, 79, 0.15);
}

.about-deco-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.about-deco-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -50px;
}

/* â”€â”€â”€ SERVICES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section {
  padding: 6rem 0;
  background-color: #FCFAF8;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 106, 79, 0.04) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

/* Services Bento Grid */
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 240px;
  position: relative;
  z-index: 2;
}

/* Bento Card Base */
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(45, 106, 79, 0.07);
  box-shadow: 0 12px 36px rgba(45, 106, 79, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
  cursor: default;
}

/* Image Wrapper */
.bento-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #f7f7f7;
  flex-shrink: 0;
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Clean vertical bottom image transition overlay */
.bento-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.9) 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}

/* Text Wrapper */
.bento-text-wrap {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 45%;
  flex-grow: 1;
  transition: background-color 0.35s ease;
}

.bento-text-wrap h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  transition: color 0.35s ease;
}

.bento-text-wrap p {
  font-size: 0.875rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Hover Micro-interactions */
.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 106, 79, 0.25);
  box-shadow: 0 20px 48px rgba(45, 106, 79, 0.08);
}

.bento-card:hover .bento-img-wrap img {
  transform: scale(1.06);
}

.bento-card:hover h3 {
  color: var(--forest-600);
}

/* 1. Large Card Style (2x2) with Frosted Glass Text Wrap */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-large .bento-img-wrap.full-image {
  height: 100%;
}

.bento-large .bento-img-wrap.full-image::after {
  background: linear-gradient(to top, rgba(45, 106, 79, 0.25) 0%, rgba(255, 255, 255, 0) 60%);
}

.bento-large .bento-text-wrap.glass-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  height: auto;
  width: auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.35rem;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.06);
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento-large .bento-text-wrap.glass-float h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
}

.bento-large .bento-text-wrap.glass-float p {
  font-size: 0.95rem;
  color: #2b2b2b;
}

.bento-large:hover .bento-text-wrap.glass-float {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 40px rgba(45, 106, 79, 0.12);
}

/* 2. Wide Card Style (2x1) with Left/Right Split */
.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}

.bento-wide .bento-img-wrap {
  width: 50%;
  height: 100%;
}

.bento-wide .bento-img-wrap::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.95) 100%);
}

.bento-wide .bento-text-wrap {
  width: 50%;
  height: 100%;
  padding: 1.5rem 1.75rem;
}

/* 3. Tall Card Style (1x2) */
.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-tall .bento-img-wrap {
  height: 60%;
}

.bento-tall .bento-text-wrap {
  height: 40%;
}

/* 4. Superwide Card Style (4x1) with 40/60 Split */
.bento-superwide {
  grid-column: span 4;
  grid-row: span 1;
  flex-direction: row;
}

.bento-superwide .bento-img-wrap {
  width: 40%;
  height: 100%;
}

.bento-superwide .bento-img-wrap::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.95) 100%);
}

.bento-superwide .bento-text-wrap {
  width: 60%;
  height: 100%;
  padding: 1.75rem 2.25rem;
}

.bento-superwide .bento-text-wrap h3 {
  font-size: 1.4rem;
}

.bento-superwide .bento-text-wrap p {
  font-size: 0.95rem;
}

/* Responsive Breakpoints & Desktop First Adjustments */
@media (max-width: 1024px) {
  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .bento-superwide {
    grid-column: span 2;
  }

  .bento-superwide .bento-img-wrap {
    width: 50%;
  }

  .bento-superwide .bento-text-wrap {
    width: 50%;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 5rem 0;
  }

  .services-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1.25rem;
  }

  .bento-card,
  .bento-large,
  .bento-wide,
  .bento-tall,
  .bento-superwide {
    grid-column: span 1 !important;
    grid-row: auto !important;
    flex-direction: column !important;
    min-height: 320px;
  }

  .bento-large {
    min-height: 360px;
  }

  .bento-img-wrap,
  .bento-wide .bento-img-wrap,
  .bento-superwide .bento-img-wrap {
    width: 100% !important;
    height: 50% !important;
  }

  .bento-img-wrap::after,
  .bento-wide .bento-img-wrap::after,
  .bento-superwide .bento-img-wrap::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.95) 100%) !important;
  }

  .bento-text-wrap,
  .bento-wide .bento-text-wrap,
  .bento-superwide .bento-text-wrap {
    width: 100% !important;
    height: 50% !important;
    padding: 1.25rem !important;
  }

  .bento-large .bento-text-wrap.glass-float {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    border: none !important;
    background: #ffffff !important;
    padding: 1.25rem !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bento-large .bento-img-wrap.full-image {
    height: 50% !important;
  }

  .bento-large .bento-text-wrap.glass-float h3 {
    font-size: 1.2rem;
  }

  .bento-large .bento-text-wrap.glass-float p {
    font-size: 0.875rem;
  }
}

/* â”€â”€â”€ PROCESS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section {
  padding: 6rem 0;
  background: var(--indigo-50);
  position: relative;
  overflow: hidden;
}

.process-steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.process-line {
  position: absolute;
  top: 60px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.process-line-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--indigo-500), #7c3aed);
  transition: width 1s ease;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--indigo-500);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--indigo-500);
  color: var(--indigo-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
  transition: var(--transition);
}

.process-step:hover .step-icon-wrap {
  background: var(--indigo-500);
  color: #fff;
  transform: scale(1.1);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}

.process-step-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.1);
}

.process-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process-step:hover .process-step-img {
  transform: scale(1.05);
}

.step-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* â”€â”€â”€ CLINIC TOUR SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clinic-tour-section {
  padding: 6rem 0;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.clinic-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.tour-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.05);
  aspect-ratio: 3 / 3;
}

.tour-main,
.tour-sub-1,
.tour-sub-2 {
  grid-column: span 1;
  grid-row: span 1;
}



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

.tour-card:hover .tour-img {
  transform: scale(1.04);
}

.tour-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(15, 35, 25, 0.8) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* â”€â”€â”€ CLINIC TOUR SWIPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-swiper-container {
  margin-top: 2rem;
  position: relative;
}

.tour-swiper {
  padding-bottom: 3rem;
  /* Space for pagination */
}

.tour-swiper-slide .tour-card {
  /* height: 250px; */
  width: 100%;
}

.tour-swiper-slide .tour-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-swiper-pagination .swiper-pagination-bullet {
  background: var(--forest-500);
  opacity: 0.5;
}

.tour-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* â”€â”€â”€ TESTIMONIALS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--burgun-900);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.testimonials-swiper {
  padding-bottom: 3.5rem !important;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 2.25rem;
  height: 100%;
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 4px;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold-400);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.author-tag {
  font-size: 0.75rem;
  color: var(--gold-300);
  margin-top: 2px;
}

/* Swiper customization */
.testimonials-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold-400);
  width: 24px;
  border-radius: 4px;
}

.testimonials-btn-prev,
.testimonials-btn-next {
  color: var(--gold-400) !important;
}

.testimonials-btn-prev::after,
.testimonials-btn-next::after {
  font-size: 1.1rem !important;
  font-weight: bold;
}

/* â”€â”€â”€ GALLERY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-section {
  padding: 6rem 0;
  background: #FAFAFA;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.gallery-card-featured {
  /* Removed span 2 to fit in 1fr 1fr 1fr grid */
}

/* Compare slider card */
.gallery-compare-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  /* Equalized height */
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-before,
.gallery-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-before img,
.gallery-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gallery-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

.gallery-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
}

.gallery-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

.gl-before {
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.gl-after {
  right: 12px;
  background: var(--forest-600);
  color: #fff;
}

/* Hover reveal cards */
.gallery-hover-card {
  cursor: pointer;
}

.gallery-static-img {
  position: relative;
  height: 350px;
  /* Equalized height */
  overflow: hidden;
}

.gallery-static-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-hover-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gallery-hover-card:hover .gallery-hover-overlay {
  opacity: 1;
}

.hover-instruction {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
}

.gallery-condition {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
}

.gallery-duration {
  font-size: 0.75rem;
  color: var(--forest-600);
  font-weight: 600;
  background: var(--forest-50);
  padding: 3px 10px;
  border-radius: 100px;
}

.gallery-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 2rem;
  color: #888;
  font-size: 0.82rem;
}

/* â”€â”€â”€ WHY HOMEOPATHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-section {
  padding: 6rem 0;
  background: var(--sage-100);
}

.why-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 1rem;
}

.why-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.why-block-reverse {
  direction: rtl;
}

.why-block-reverse>* {
  direction: ltr;
}

.why-block-visual {
  border-radius: 2rem;
  height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.why-block-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-block:hover .why-block-visual img {
  transform: scale(1.05);
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.why-block-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.why-block-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.why-block-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.why-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #444;
  font-weight: 500;
}

.why-benefits li svg {
  color: var(--forest-500);
  flex-shrink: 0;
}

/* â”€â”€â”€ APPOINTMENT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.appointment-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #10B981 0%, #059669 40%, #047857 100%);
}

.appointment-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.appt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(255, 255, 255, 0.1);
}

.appt-blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.appt-blob-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: 5%;
  animation: float-blob 8s ease-in-out infinite;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.appt-heading {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem;
}

.appt-heading em {
  color: rgba(255, 255, 255, 0.8);
}

.appt-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.appt-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.appt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
}

.appt-info-item svg {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  flex-shrink: 0;
}

.appt-info-item strong {
  color: #fff;
}

.appt-quick-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.appt-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--forest-600);
  padding: 11px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.appt-call-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.appt-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.appt-whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Appointment Form */
.appointment-form-wrap {}

.appointment-form-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 2.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.form-card-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.form-card-sub {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.75rem;
}

.appt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(45, 154, 107, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  cursor: pointer;
}

.book-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--forest-600);
  color: #fff;
  padding: 13px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
}

.book-submit-btn:hover {
  background: var(--forest-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.4);
}

.form-success-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #d1fae5;
  color: #065f46;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #6ee7b7;
}

/* â”€â”€â”€ VIDEO SHOWCASE SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.video-showcase-section {
  padding: 6rem 0;
  background: var(--cream-100);
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  justify-items: center;
}

.video-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 40px rgba(45, 106, 79, 0.15);
  border: 1px solid rgba(45, 106, 79, 0.1);
  width: 100%;
  max-width: 360px;
  /* Prevents the video from becoming massively tall on desktop */
}

.showcase-video {
  width: 100%;
  height: auto;
  /* Lets the video show its true aspect ratio without cropping */
  display: block;
}

.video-mute-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  z-index: 10;
}

.video-mute-btn:hover {
  background: rgba(45, 106, 79, 0.8);
  border-color: rgba(45, 106, 79, 0.5);
  transform: translateY(-2px);
}

.video-mute-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* â”€â”€â”€ FAQ SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  padding: 6rem 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.faq-bg-quote {
  position: absolute;
  top: -60px;
  left: 20px;
  font-size: 30rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  font-family: 'Lora', serif;
  pointer-events: none;
  line-height: 1;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Outfit', sans-serif;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--forest-600);
}

.faq-question.open {
  color: var(--forest-600);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-section {
  background: var(--slate-900);
}

.footer-top {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo-name {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.footer-logo-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  background: rgba(212, 175, 55, 0.1);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* â”€â”€â”€ FLOATING WHATSAPP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-floating:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-floating:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-8px);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}

@keyframes float-wa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(240px, 320px) 1fr;
    gap: 1.5rem;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .service-card.card-featured {
    grid-column: span 3;
  }

  .service-card.card-wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar-inner {
    padding: 0 1rem;
  }

  .logo-clinic-name {
    font-size: 0.95rem;
  }

  /* .logo-sub { display: none; } */

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    padding: 1.5rem 1rem 2.5rem;
  }

  .hero-left {
    text-align: center;
    padding-right: 0;
  }

  .hero-right {
    padding-left: 0;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-image-column {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 280px;
  }

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

  .float-card-1,
  .float-card-2 {
    display: none;
  }

  .services-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.card-featured,
  .service-card.card-wide {
    grid-column: span 2;
  }

  .process-steps-container {
    grid-template-columns: 1fr 1fr;
  }

  .process-line {
    display: none;
  }

  .clinic-tour-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .tour-main,
  .tour-sub-1,
  .tour-sub-2 {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 250px;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
  }


  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-block,
  .why-block-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .why-block-visual {
    height: 200px;
  }

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

  .gallery-card-featured {
    grid-row: span 1;
  }

  /* .gallery-compare-wrap {
    height: 300px;
  } */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .whatsapp-floating {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .faq-bg-quote {
    font-size: 15rem;
  }

  .about-deco-1,
  .about-deco-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-image-wrapper {
    max-width: 240px;
  }

  .hero-stats-row {
    gap: 0.75rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .services-bento-grid {
    grid-template-columns: 1fr;
  }

  .service-card.card-featured,
  .service-card.card-wide {
    grid-column: span 1;
  }

  .process-steps-container {
    grid-template-columns: 1fr;
  }

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

  /* Digital Certificate Mobile scaling */
  .digital-certificate {
    padding: 1.1rem;
    border-radius: 1rem;
  }

  .certificate-inner {
    padding: 0.85rem 0.65rem;
  }

  .cert-corner {
    width: 12px;
    height: 12px;
  }

  .cert-corner-tl {
    top: 5px;
    left: 5px;
  }

  .cert-corner-tr {
    top: 5px;
    right: 5px;
  }

  .cert-corner-bl {
    bottom: 5px;
    left: 5px;
  }

  .cert-corner-br {
    bottom: 5px;
    right: 5px;
  }

  .cert-crest svg {
    width: 26px;
    height: 26px;
  }

  .cert-authority {
    font-size: 0.52rem;
  }

  .cert-title {
    font-size: 0.65rem;
  }

  .cert-statement {
    font-size: 0.5rem;
    margin-top: 1px;
  }

  .cert-recipient {
    font-size: 1.1rem;
    margin: 2px 0;
  }

  .cert-qualification {
    font-size: 0.46rem;
    max-width: 95%;
    line-height: 1.3;
  }

  .cert-degree {
    font-size: 0.75rem;
    margin-top: 2px;
  }

  .cert-abbr {
    font-size: 0.62rem;
  }

  .cert-footer {
    margin-top: 6px;
  }

  .cert-sig-font {
    font-size: 0.58rem;
  }

  .cert-sig-title {
    font-size: 0.46rem;
    margin-top: 2px;
  }

  .cert-gold-seal-wrap {
    width: 32px;
    height: 32px;
    margin-bottom: -4px;
  }

  .cert-gold-seal {
    width: 26px;
    height: 26px;
  }

  .cert-gold-seal::after {
    font-size: 0.5rem;
  }

  .seal-ribbon {
    width: 6px;
    height: 14px;
    bottom: -8px;
  }

  .ribbon-left {
    left: 8px;
  }

  .ribbon-right {
    right: 8px;
  }
}

/* ============================================================
   NEW FEATURES: Priority Services, Tag Cloud & Tour Video
   ============================================================ */

/* â”€â”€â”€ PRIORITY SERVICES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.priority-services-section {
  margin-bottom: 4rem;
}

.priority-label-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.priority-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--forest-100), #e8f5d8);
  color: var(--forest-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(45, 106, 79, 0.2);
  box-shadow: 0 2px 12px rgba(45, 106, 79, 0.1);
}

.priority-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .priority-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .priority-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .priority-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Priority Card */
.priority-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  cursor: default;
}

.priority-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 16px 48px rgba(45, 106, 79, 0.18);
  border-color: rgba(45, 106, 79, 0.3);
}

/* Image wrap â€” fixed aspect ratio */
.priority-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.priority-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.priority-card:hover .priority-card-img-wrap img {
  transform: scale(1.06);
}

/* Green gradient overlay on hover */
.priority-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(45, 106, 79, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.priority-card:hover .priority-card-overlay {
  opacity: 1;
}

/* Emoji icon badge â€” top-right */
.priority-icon-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  z-index: 2;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.priority-card:hover .priority-icon-badge {
  transform: scale(1.2) rotate(-5deg);
}

/* Text body */
.priority-card-body {
  padding: 1rem 1.125rem 1.125rem;
}

.priority-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.975rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.priority-card-body p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .priority-card-body {
    padding: 0.75rem;
  }
  .priority-card-body h3 {
    font-size: 0.875rem;
  }
  .priority-card-body p {
    font-size: 0.75rem;
  }
  .priority-icon-badge {
    font-size: 1.3rem;
  }
}


/* â”€â”€â”€ SERVICES TAG CLOUD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-tag-cloud-section {
  background: linear-gradient(135deg, var(--forest-50), #f8fdf5, #fffef9);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.06);
  position: relative;
  overflow: hidden;
}

.services-tag-cloud-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.tag-cloud-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.tag-cloud-title {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.tag-cloud-sub {
  font-size: 0.9rem;
  color: #666;
}

.services-tag-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  justify-items: stretch;
}

@media (min-width: 1200px) {
  .services-tag-cloud {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1024px) {
  .services-tag-cloud {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-tag-cloud {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base tag */
.service-tag {
  display: inline-block;
  text-align: center;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest-600);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(45, 106, 79, 0.2);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  user-select: none;
  backdrop-filter: blur(4px);
}

.service-tag:hover {
  background: var(--forest-600);
  color: #fff;
  border-color: var(--forest-600);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.25);
}

/* Featured/highlighted tags */
.service-tag.featured-tag {
  background: linear-gradient(135deg, var(--forest-100), #d0eedd);
  border-color: rgba(45, 106, 79, 0.35);
  font-weight: 700;
  color: var(--forest-700);
}

.service-tag.featured-tag:hover {
  background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
  color: #fff;
  border-color: var(--forest-600);
}

@media (max-width: 640px) {
  .services-tag-cloud-section {
    padding: 1.75rem 1.25rem;
  }
  .tag-cloud-title {
    font-size: 1.25rem;
  }
  .service-tag {
    font-size: 0.77rem;
    padding: 0.4rem 0.8rem;
  }
}


/* â”€â”€â”€ CLINIC TOUR VIDEO IN SWIPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-swiper-slide .tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0a0a0a;
  height: 330px;
}

/* Ensure the video fills the card exactly like the images */
.tour-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.tour-swiper-slide .tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .tour-swiper-slide .tour-card {
    height: 390px;
  }
}

@media (min-width: 1024px) {
  .tour-swiper-slide .tour-card {
    height: 450px;
  }
}
