/*
 * श्री दुर्गा आयुर्वेद - Premium Stylesheet
 * Custom CSS extending Bootstrap 5
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&family=Noto+Serif+Devanagari:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Light Mode */
  --clr-primary: #0B4D3B;
  --clr-primary-hover: #073528;
  --clr-secondary: #10B981;
  --clr-secondary-hover: #059669;
  --clr-gold: #D4AF37;
  --clr-gold-light: #F4E8C1;
  --clr-gold-hover: #C59B27;
  --clr-cream: #FAF9F5;
  --clr-white: #FFFFFF;
  --clr-dark: #121A16;
  --clr-text: #2A3630;
  --clr-text-muted: #6B7C74;
  --clr-border: rgba(11, 77, 59, 0.1);
  --clr-glass-bg: rgba(255, 255, 255, 0.8);
  --clr-glass-border: rgba(11, 77, 59, 0.08);
  
  /* Fonts */
  --font-serif: 'Noto Serif Devanagari', serif;
  --font-sans: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(11, 77, 59, 0.04);
  --shadow-md: 0 12px 30px rgba(11, 77, 59, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 77, 59, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* Dark Mode Color Palette overrides */
body.dark-mode {
  --clr-cream: #09100D;
  --clr-white: #0E1613;
  --clr-text: #E3EAE6;
  --clr-text-muted: #9BB0A6;
  --clr-border: rgba(212, 175, 55, 0.15);
  --clr-glass-bg: rgba(14, 22, 19, 0.85);
  --clr-glass-border: rgba(212, 175, 55, 0.1);
  --clr-primary: #10B981;
  --clr-primary-hover: #34D399;
  --clr-secondary: #D4AF37;
  --clr-secondary-hover: #E3C155;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* General Styles */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background-color: var(--clr-cream);
  color: var(--clr-text);
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--clr-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-secondary);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-secondary), var(--clr-gold));
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Sticky Header with Glassmorphism */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 15px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.navbar-custom.scrolled {
  padding: 10px 0;
  background: var(--clr-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-glass-border);
  box-shadow: var(--shadow-sm);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--clr-primary);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.dark-mode .logo-icon {
  border-color: var(--clr-gold);
  background-color: #ffffff;
}

.footer-section .logo-icon {
  border-color: var(--clr-gold);
}

.logo-text h1,
.logo-text .logo-title {
  font-size: 1.15rem;
  margin: 0;
  color: var(--clr-primary);
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.2;
}

body.dark-mode .logo-text h1,
body.dark-mode .logo-text .logo-title {
  color: var(--clr-white);
}

.logo-text p {
  font-size: 0.65rem;
  margin: 0;
  color: var(--clr-gold-hover);
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-link-custom {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-muted) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-link-custom:hover, 
.nav-link-custom.active {
  color: var(--clr-primary) !important;
  background-color: rgba(16, 185, 129, 0.08);
}

body.dark-mode .nav-link-custom:hover,
body.dark-mode .nav-link-custom.active {
  color: var(--clr-gold) !important;
  background-color: rgba(212, 175, 55, 0.1);
}

.dropdown-menu-custom {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
}

.dropdown-item-custom {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--clr-primary);
}

body.dark-mode .dropdown-item-custom:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--clr-gold);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  z-index: 1060;
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  visibility: hidden; /* Prevent horizontal scrolling/overflow on mobile when closed */
}

.mobile-drawer.open {
  right: 0;
  visibility: visible;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1055;
  background: rgba(11, 77, 59, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* Premium Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(11, 77, 59, 0.04) 0%, rgba(20, 185, 129, 0.03) 50%, rgba(212, 175, 55, 0.03) 100%);
}

body.dark-mode .hero-section {
  background: linear-gradient(135deg, rgba(14, 22, 19, 0.8) 0%, rgba(9, 16, 13, 0.9) 100%);
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.25;
  color: var(--clr-primary);
  margin-bottom: 20px;
}

body.dark-mode .hero-heading {
  color: var(--clr-white);
}

.hero-heading span {
  color: var(--clr-secondary);
  position: relative;
}

body.dark-mode .hero-heading span {
  color: var(--clr-gold);
}

.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  color: var(--clr-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

body.dark-mode .hero-badge {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--clr-gold);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-premium {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-premium-primary {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  color: var(--clr-white);
  border: none;
  box-shadow: 0 4px 15px rgba(11, 77, 59, 0.2);
}

.btn-premium-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 77, 59, 0.3);
  color: var(--clr-white);
}

.btn-premium-secondary {
  background: var(--clr-white);
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.btn-premium-secondary:hover {
  background-color: var(--clr-cream);
  color: var(--clr-primary-hover);
  transform: translateY(-2px);
}

.btn-premium-whatsapp {
  background: #25D366;
  color: var(--clr-white);
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-premium-whatsapp:hover {
  background-color: #20BA5A;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 8px solid var(--clr-white);
  box-shadow: var(--shadow-lg);
  background: var(--clr-white);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Floating Card inside Image */
.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

body.dark-mode .hero-float-card {
  background: rgba(14, 22, 19, 0.9);
  border-color: rgba(212, 175, 55, 0.1);
}

/* Global Section Header */
.section-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-secondary);
  display: inline-block;
  margin-bottom: 8px;
}

body.dark-mode .section-tagline {
  color: var(--clr-gold);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--clr-primary);
  font-weight: 800;
  margin-bottom: 12px;
}

body.dark-mode .section-title {
  color: var(--clr-white);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-secondary), var(--clr-gold));
  border-radius: 2px;
  margin-bottom: 24px;
}

.section-desc {
  color: var(--clr-text-muted);
  max-width: 600px;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.25);
}

body.dark-mode .glass-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.glass-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--clr-primary);
  margin-bottom: 24px;
}

body.dark-mode .glass-card-icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--clr-gold);
}

/* Diseases Grid Section */
.disease-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.disease-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.25);
}

.disease-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.disease-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.disease-card:hover .disease-img-wrapper img {
  transform: scale(1.05);
}

.disease-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

body.dark-mode .disease-badge {
  background: var(--clr-gold);
  color: var(--clr-dark);
}

.disease-info-box {
  padding: 24px;
}

.disease-info-title {
  font-size: 1.35rem;
  color: var(--clr-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

body.dark-mode .disease-info-title {
  color: var(--clr-white);
}

.disease-details-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.disease-details-list li {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.disease-details-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--clr-secondary);
}

body.dark-mode .disease-details-list li::before {
  content: "✔";
  color: var(--clr-gold);
}

/* Infographic Kshar Sutra Timeline */
.kshar-timeline-container {
  position: relative;
  padding: 40px 0;
}

.kshar-timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-gold), var(--clr-secondary));
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .kshar-timeline-container::before {
    left: 20px;
  }
}

.kshar-timeline-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.kshar-timeline-node:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .kshar-timeline-node, 
  .kshar-timeline-node:nth-child(even) {
    flex-direction: row;
    padding-left: 45px;
  }
}

.kshar-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: var(--clr-white);
  border: 4px solid var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .kshar-timeline-dot {
    left: 20px;
  }
}

.kshar-timeline-card {
  width: 44%;
  padding: 24px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .kshar-timeline-card {
    width: 100%;
  }
}

/* Animated Counters Block */
.stats-banner {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-hover) 100%);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  box-shadow: var(--shadow-lg);
}

body.dark-mode .stats-banner {
  background: linear-gradient(135deg, #0e1915 0%, #060c0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-counter-val {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-counter-lbl {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* Appointment Form Premium Styling */
.appointment-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.form-control-custom {
  background-color: var(--clr-cream);
  border: 1.5px solid var(--clr-border);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background-color: var(--clr-white);
  border-color: var(--clr-secondary);
  box-shadow: none;
  outline: none;
}

body.dark-mode .form-control-custom:focus {
  border-color: var(--clr-gold);
}

/* Input Icon Group Styling (Unified form input style with absolute icons) */
.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon-group i.input-icon {
  position: absolute;
  left: 16px;
  color: #10B981;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}

body.dark-mode .input-icon-group i.input-icon {
  color: #34D399;
}

.input-icon-group .form-control,
.input-icon-group .form-select {
  padding-left: 42px;
  height: 50px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-size: 0.95rem;
  background-color: #F8FAFC;
  color: #334155;
  transition: all 0.3s ease;
}

body.dark-mode .input-icon-group .form-control,
body.dark-mode .input-icon-group .form-select {
  background-color: #0E1613;
  border-color: rgba(212, 175, 55, 0.15);
  color: #E3EAE6;
}

.input-icon-group .form-control::placeholder {
  color: #94A3B8;
}

body.dark-mode .input-icon-group .form-control::placeholder {
  color: rgba(155, 176, 166, 0.5);
}

.input-icon-group .form-control:focus,
.input-icon-group .form-select:focus {
  border-color: #10B981;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  outline: none;
}

body.dark-mode .input-icon-group .form-control:focus,
body.dark-mode .input-icon-group .form-select:focus {
  border-color: var(--clr-gold);
  background-color: #0E1613;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Testimonial slider custom styling */
.testimonial-card-swiper {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.stars-rating {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Clinic Gallery Section */
.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--clr-white);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

body.dark-mode .gallery-filter-btn.active,
body.dark-mode .gallery-filter-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}

.gallery-grid-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

.gallery-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 77, 59, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}

/* Accordion Custom styling */
.accordion-custom .accordion-item {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background-color: var(--clr-white);
  color: var(--clr-primary);
  font-weight: 700;
  padding: 20px;
  border: none;
  font-size: 0.95rem;
  box-shadow: none;
}

body.dark-mode .accordion-custom .accordion-button {
  color: var(--clr-gold);
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: rgba(16, 185, 129, 0.05);
  border-bottom: 1px solid var(--clr-border);
}

body.dark-mode .accordion-custom .accordion-button:not(.collapsed) {
  background-color: rgba(212, 175, 55, 0.05);
}

.accordion-custom .accordion-body {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  padding: 20px;
}

/* Before and after disclaimer alert */
.disclaimer-alert {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--clr-gold);
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Floating contact buttons */
.floating-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-float-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-float-circle:hover {
  transform: scale(1.1) translateY(-4px);
  color: var(--clr-white);
}

.float-wa {
  background-color: #25D366;
}

.float-call {
  background-color: var(--clr-primary);
}

.float-top {
  background-color: transparent !important;
  opacity: 0;
  visibility: hidden;
}

.float-top.show {
  opacity: 1;
  visibility: visible;
}

/* Breadcrumb Styling */
.breadcrumb-container {
  background: linear-gradient(135deg, rgba(11, 77, 59, 0.03) 0%, rgba(212, 175, 55, 0.02) 100%);
  padding: 100px 0 30px;
  margin-bottom: 40px;
}

body.dark-mode .breadcrumb-container {
  background: linear-gradient(135deg, #0e1915 0%, #060c0a 100%);
}

.breadcrumb-title {
  font-size: 2.25rem;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

body.dark-mode .breadcrumb-title {
  color: var(--clr-white);
}

.breadcrumb-custom {
  margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--clr-text-muted);
  font-weight: 500;
  font-size: 0.88rem;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 0.88rem;
}

body.dark-mode .breadcrumb-custom .breadcrumb-item.active {
  color: var(--clr-gold);
}

/* Search Modal and overlay */
.search-modal-custom .modal-content {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.search-input-group {
  position: relative;
  width: 100%;
}

.search-input-group i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
}

.search-input-field {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-cream);
  color: var(--clr-text);
  font-size: 1.1rem;
  outline: none;
}

.search-input-field:focus {
  background: var(--clr-white);
  border-color: var(--clr-secondary);
}

body.dark-mode .search-input-field:focus {
  border-color: var(--clr-gold);
}

/* Treatment Detail page Specific elements */
.treatment-checklist {
  list-style: none;
  padding: 0;
}

.treatment-checklist li {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.treatment-checklist li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--clr-secondary);
  font-size: 1.1rem;
}

body.dark-mode .treatment-checklist li i {
  color: var(--clr-gold);
}

/* footer styles */
.footer-section {
  background-color: #06241C;
  color: #B5C6BE;
  padding: 45px 0 15px; /* Compact desktop padding */
  border-top: 1px solid var(--clr-border);
}

body.dark-mode .footer-section {
  background-color: #050A08;
  border-top-color: rgba(212, 175, 55, 0.15);
}

.footer-section h4 {
  color: var(--clr-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.dark-mode .footer-section h4 {
  color: var(--clr-gold);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #B5C6BE;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--clr-gold);
  padding-left: 5px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--clr-gold);
  color: #06241C;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 50px;
  font-size: 0.8rem;
}

/* Lightbox custom overrides */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--clr-white);
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}



/* Responsive Image Banner Hero styling (Desktop) */
.hero-section-desktop-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f6fbf9;
  padding-top: 86px; /* offset sticky navbar */
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop Overlays */
.hero-overlay-buttons {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.hero-overlay-btn {
  position: absolute;
  display: block;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.2s, box-shadow 0.2s;
  top: 74.5%;
  height: 14.6%;
}

.hero-overlay-btn:hover {
  background-color: rgba(255, 255, 255, 0.12); /* soft white glow */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.btn-desktop-appointment {
  left: 10.1%;
  width: 12.9%;
}

.btn-desktop-call {
  left: 23.9%;
  width: 17.0%;
}

.btn-desktop-whatsapp {
  left: 41.3%;
  width: 13.9%;
}

/* Mobile Hero Banner layout & styling */
.hero-section-mobile-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f6fbf9;
  padding-top: 70px; /* Offset mobile sticky navbar */
}

.hero-banner-mobile-wrapper {
  position: relative;
  width: 100%;
  max-width: 576px; /* standard mobile width limit */
  margin: 0 auto;
}

.hero-banner-mobile-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Overlays */
.hero-overlay-mobile-buttons {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.hero-overlay-mobile-btn {
  position: absolute;
  display: block;
  cursor: pointer;
  border-radius: 30px; /* matched to pill shapes */
  transition: background-color 0.2s, box-shadow 0.2s;
  left: 12.2%;
  width: 75.6%;
  height: 3.8%;
}

.hero-overlay-mobile-btn:hover {
  background-color: rgba(255, 255, 255, 0.12); /* soft overlay glow */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.btn-mobile-appointment {
  top: 67.0%;
}

.btn-mobile-whatsapp {
  top: 71.8%;
}

/* Appointment CTA Card Premium Styling */
.appointment-cta-card {
  background: linear-gradient(135deg, var(--clr-primary, #073A2B), #0d5c45);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(7, 58, 43, 0.25);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.appointment-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(223, 177, 47, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.appointment-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 36, 28, 0.75); /* premium dark overlay */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto; /* enable scrolling when height overflows */
  padding: 20px 10px; /* safe breathing space */
}

.appointment-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.appointment-popup-card {
  background: linear-gradient(145deg, #ffffff, #f7faf9);
  border-radius: var(--radius-md);
  padding: 30px 20px 25px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(11, 77, 59, 0.15), 0 0 0 5px rgba(212, 175, 55, 0.06);
  position: relative;
  max-width: 360px; /* compact size suitable for all phones */
  width: 90%;
  margin: auto; /* automatic flex margin centring that supports overflow scrolling */
  text-align: center;
  transition: all 0.4s ease;
  transform: scale(0.85);
  z-index: 100001;
}

.appointment-popup-overlay.show .appointment-popup-card {
  transform: scale(1);
}

.appointment-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.appointment-popup-close:hover {
  color: var(--clr-primary);
  transform: scale(1.15) rotate(90deg);
}

.appointment-popup-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.appointment-popup-gift-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-hover));
  color: #000000;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
  border: 2px solid #ffffff;
  animation: float-icon 3s infinite ease-in-out;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}

.appointment-popup-badge {
  background-color: var(--clr-gold);
  color: #000000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.25);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.appointment-popup-title {
  color: var(--clr-primary);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.25;
}

.appointment-popup-subtitle {
  color: var(--clr-secondary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.appointment-popup-text {
  font-size: 0.92rem;
  color: var(--clr-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.appointment-popup-discount-tag {
  background: rgba(16, 185, 129, 0.08);
  color: var(--clr-secondary-hover);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 4px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.popup-live-slots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e63946;
  background: rgba(230, 57, 70, 0.06);
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.popup-live-slots .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #e63946;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(230, 57, 70, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.btn-popup-action {
  background-color: var(--clr-primary);
  color: var(--clr-white) !important;
  border: none;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(11, 77, 59, 0.25);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Shimmering Button effect */
.btn-popup-action::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine-btn 3s infinite;
}

@keyframes shine-btn {
  0% { left: -50%; }
  30% { left: 125%; }
  100% { left: 125%; }
}

.btn-popup-action:hover {
  background-color: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 77, 59, 0.35);
}

body.dark-mode .appointment-popup-card {
  background: linear-gradient(145deg, #0e1a16, #060d0a);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(212, 175, 55, 0.08);
}

body.dark-mode .appointment-popup-gift-icon {
  border-color: #0e1a16;
}

body.dark-mode .appointment-popup-close {
  color: var(--clr-text-muted);
}
body.dark-mode .appointment-popup-close:hover {
  color: var(--clr-white);
}

/* ── Mobile Optimization for Appointment Promo Popup ── */
@media (max-width: 480px) {
  .appointment-popup-card {
    max-width: 295px; /* compact size to fit perfectly in 9:16 viewports without stretching */
    padding: 16px 14px 16px;
    border-radius: 16px;
  }
  
  .appointment-popup-close {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .appointment-popup-icon-wrap {
    margin-bottom: 6px;
  }

  .appointment-popup-gift-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-width: 1px;
  }

  .appointment-popup-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
    margin-bottom: 8px;
  }

  .appointment-popup-title {
    font-size: 1.05rem;
    margin-bottom: 2px;
  }

  .appointment-popup-subtitle {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .appointment-popup-text {
    font-size: 0.78rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .appointment-popup-discount-tag {
    font-size: 0.9rem;
    margin-top: 1px;
  }

  .popup-live-slots {
    font-size: 0.68rem;
    padding: 3px 8px;
    margin-bottom: 12px;
  }

  .btn-popup-action {
    padding: 8px 12px;
    font-size: 0.82rem;
  }
}

/* Mockup-specific Footer Upgrades */
.footer-section h4 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
}
.footer-section h4::after {
  content: "\f06c"; /* leaf icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  bottom: -9px;
  color: #10B981;
  font-size: 0.85rem;
  background: #06241C;
  padding-right: 8px;
}
body.dark-mode .footer-section h4::after {
  background: #050A08;
}

.footer-herbs-wrapper {
  max-width: 170px;
  margin-top: 15px;
  opacity: 0.95;
}
.footer-herbs-img {
  border-radius: 8px;
}

/* Social media upgrades */
.social-links-new .follow-us-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.social-icons-wrapper {
  display: flex;
  gap: 12px;
}
.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.social-circle:hover {
  transform: scale(1.1) translateY(-2px);
}
.social-circle.fb {
  background-color: #3B5998;
}
.social-circle.yt {
  background-color: #FF0000;
}
.social-circle.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Links wrapper with icon circles */
.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-new li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B5C6BE;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.footer-links-new li a:hover {
  color: #D4AF37;
  transform: translateX(4px);
}
.footer-link-icon-circle {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer-links-new li a:hover .footer-link-icon-circle {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}

/* Contact details box card */
.footer-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-contact-item-new {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-item-new .contact-icon {
  color: #D4AF37;
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item-new .contact-text {
  font-size: 0.88rem;
  color: #B5C6BE;
  line-height: 1.5;
}
.footer-call-btn-mockup {
  background: linear-gradient(90deg, #E6F5EE 0%, #C6ECD8 100%);
  color: #053321;
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.footer-call-btn-mockup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #053321;
}
.footer-call-btn-mockup i {
  font-size: 1.3rem;
  color: #0B4D3B;
}
.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: start;
}
.btn-text-wrapper .small-label {
  font-size: 0.72rem;
  color: #4A6B5D;
  font-weight: 600;
}
.btn-text-wrapper .large-phone {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0B4D3B;
}

/* Horizontal features banner inside footer */
.footer-features-banner {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 20px;
  padding: 24px 30px;
}
.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-feature-item .feature-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  text-align: start;
}
.feature-text-wrapper .feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}
.feature-text-wrapper .feature-subtitle {
  font-size: 0.78rem;
  color: #8FAD9F;
  font-weight: 500;
}

/* Footer Bottom Divider and leaf ornament */
.footer-bottom-divider-line {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.divider-leaf-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #06241C;
  color: #D4AF37;
  padding: 0 12px;
  font-size: 1.1rem;
}
body.dark-mode .divider-leaf-icon {
  background: #050A08;
}

/* Footer bottom elements */
.footer-bottom-new {
  font-size: 0.8rem;
  color: #8FAD9F;
}
.disclaimer-text-new {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: start;
  line-height: 1.5;
}
.disclaimer-text-new i {
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom-links-new a {
  color: #8FAD9F;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.footer-bottom-links-new a:hover {
  color: #D4AF37;
}
.copyright-text-new {
  font-weight: 500;
}

/* Floating Capsule container widget on right */
.floating-capsule-container {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1040;
  background: rgba(5, 51, 33, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 40px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.capsule-widget-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.capsule-widget-btn:hover {
  transform: translateY(-2px);
}
.capsule-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.capsule-widget-btn.wa .capsule-icon-circle {
  background-color: #25D366;
}
.capsule-widget-btn.call .capsule-icon-circle {
  background-color: #10B981;
}
.capsule-widget-btn.top .capsule-icon-circle {
  background-color: #D4AF37;
}
.capsule-widget-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating contact widgets compatibility */
.capsule-widget-btn.top {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin-top: -10px;
  transition: all 0.3s ease;
}
.capsule-widget-btn.top.show {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: 0;
}

/* Ultra-Compact Footer Styling (Max ~8cm/200px Height) */
.footer-section {
  padding: 24px 0 12px !important;
}
.footer-section h4 {
  margin-bottom: 8px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.footer-section h4::after {
  display: none !important;
}
.footer-herbs-wrapper {
  display: none !important;
}
.footer-features-banner {
  display: none !important;
}
.footer-call-btn-mockup {
  display: none !important;
}
.footer-contact-card {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  gap: 10px !important;
}
.footer-links-new {
  gap: 6px !important;
}
.footer-links-new li a {
  font-size: 0.9rem !important;
}
.footer-links-new li a:hover {
  transform: none !important;
}
.footer-bottom-divider-line {
  margin-top: 15px !important;
}
.footer-bottom-new {
  margin-top: 15px !important;
}

/* Ensure the footer logo icon is also compact */
.footer-section .logo-icon {
  width: 36px !important;
  height: 36px !important;
}
.footer-section .logo-text h1,
.footer-section .logo-text .logo-title {
  font-size: 1.05rem !important;
}
.footer-section .logo-text p {
  font-size: 0.6rem !important;
}

/* ============================================================
   PREMIUM MOBILE FOOTER — Phone viewport (≤ 768px)
   Target height: ~8 cm | Design: Centered, elegant, compact
   ============================================================ */
@media (max-width: 768px) {

  /* ── Overall section padding ── */
  .footer-section {
    padding: 22px 0 12px !important;
  }

  /* ── Col-1: Logo block — center everything ── */
  .footer-section .col-lg-4 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Logo container */
  .footer-section .logo-container {
    justify-content: center !important;
    margin-bottom: 0 !important;
  }
  .footer-section .logo-icon {
    width: 34px !important;
    height: 34px !important;
  }
  .footer-section .logo-text h1,
  .footer-section .logo-text .logo-title {
    font-size: 1rem !important;
  }
  .footer-section .logo-text p {
    font-size: 0.58rem !important;
  }

  /* Hide long description paragraphs */
  .footer-section p.text-xs {
    display: none !important;
  }

  /* Herbs — hide on mobile */
  .footer-herbs-wrapper {
    display: none !important;
  }

  /* Social icons — compact & centered */
  .social-links-new {
    margin-top: 8px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .social-links-new .follow-us-label {
    font-size: 0.68rem !important;
    letter-spacing: 1.5px !important;
  }
  .social-icons-wrapper {
    gap: 8px !important;
    justify-content: center !important;
  }
  .social-circle {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
  }

  /* ── Col-2: Quick Links — horizontal pill row ── */
  .footer-section .col-sm-6.col-lg-2 {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin-top: 14px !important;
  }
  /* Hide the column heading on mobile */
  .footer-section .col-sm-6.col-lg-2 h4 {
    display: none !important;
  }
  /* Show links as a centered inline-flex wrapping row */
  .footer-section .col-sm-6.col-lg-2 .footer-links-new {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 12px !important;
    padding: 0 !important;
  }
  .footer-section .col-sm-6.col-lg-2 .footer-links-new li {
    display: inline-flex !important;
  }
  .footer-section .col-sm-6.col-lg-2 .footer-links-new li a {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #8FAD9F !important;
    gap: 4px !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    padding: 3px 10px !important;
    transition: all 0.2s ease !important;
  }
  .footer-section .col-sm-6.col-lg-2 .footer-links-new li a:hover {
    color: #D4AF37 !important;
    border-color: rgba(212,175,55,0.3) !important;
    background: rgba(212,175,55,0.06) !important;
    transform: none !important;
  }
  /* Hide icon circles inside links on mobile */
  .footer-link-icon-circle {
    display: none !important;
  }

  /* ── Col-3: Treatments — hide completely on mobile ── */
  .footer-section .col-sm-6.col-lg-3 {
    display: none !important;
  }

  /* ── Col-4: Contact card — centered, no box ── */
  .footer-section .col-lg-3 {
    width: 100% !important;
    margin-top: 12px !important;
    text-align: center !important;
  }
  .footer-section .col-lg-3 h4 {
    display: none !important;
  }
  .footer-contact-card {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    gap: 6px !important;
    align-items: center !important;
  }
  .footer-contact-item-new {
    justify-content: center !important;
    gap: 6px !important;
  }
  .footer-contact-item-new .contact-text {
    font-size: 0.78rem !important;
    color: #8FAD9F !important;
    text-align: left !important;
  }
  .footer-contact-item-new .contact-icon {
    font-size: 0.85rem !important;
    margin-top: 1px !important;
  }
  .footer-call-btn-mockup {
    display: none !important;
  }

  /* ── Hide features banner ── */
  .footer-features-banner {
    display: none !important;
  }

  /* ── Divider line — tighter spacing ── */
  .footer-bottom-divider-line {
    margin-top: 14px !important;
  }

  /* ── Footer bottom bar ── */
  .footer-bottom-new {
    margin-top: 10px !important;
    font-size: 0.72rem !important;
    text-align: center !important;
  }
  .footer-bottom-new .row {
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
  }
  .footer-bottom-new [class*="col-"] {
    width: 100% !important;
    text-align: center !important;
  }
  /* Show a tiny disclaimer on mobile */
  .disclaimer-text-new {
    display: flex !important;
    font-size: 0.66rem !important;
    color: #647E72 !important;
    gap: 5px !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
  }
  .disclaimer-text-new i {
    font-size: 0.72rem !important;
    margin-top: 1px !important;
  }
  .footer-bottom-links-new {
    margin: 4px 0 !important;
    font-size: 0.72rem !important;
  }
  .copyright-text-new {
    font-size: 0.7rem !important;
  }

  /* ── Hide Floating WhatsApp, Call, and Scroll-to-Top buttons on mobile ── */
  .floating-capsule-container,
  .floating-widget-container,
  .float-top,
  .btn-float-circle {
    display: none !important;
  }
}

/* ── New Home Page Appointment Graphic Banner Styles ── */
.appointment-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.appointment-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.appointment-banner-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0); /* transparent clickable area */
  border: none;
  cursor: pointer;
  z-index: 10;
  display: block;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* Subtle premium hover highlights */
.appointment-banner-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.appointment-banner-btn.btn-whatsapp-desktop:hover,
.appointment-banner-btn.btn-whatsapp-mobile:hover {
  background-color: rgba(37, 211, 102, 0.06);
}

.appointment-banner-btn.btn-call-desktop:hover,
.appointment-banner-btn.btn-call-mobile:hover {
  background-color: rgba(22, 78, 32, 0.06);
}

/* ── Desktop Hotspots ── */
.appointment-banner-btn.btn-appointment-desktop {
  left: 70.5%;
  width: 23%;
  top: 60.5%;
  height: 8.5%;
  border-radius: 20px;
}

.appointment-banner-btn.btn-whatsapp-desktop {
  left: 70.5%;
  width: 23%;
  top: 70.5%;
  height: 8.5%;
  border-radius: 20px;
}

.appointment-banner-btn.btn-call-desktop {
  left: 34%;
  width: 27%;
  top: 85%;
  height: 11%;
  border-radius: 25px;
}

/* ── Mobile Hotspots ── */
.appointment-banner-btn.btn-appointment-mobile {
  left: 19.0%;
  width: 60.5%;
  top: 78.0%;
  height: 4.0%;
  border-radius: 20px;
}

.appointment-banner-btn.btn-whatsapp-mobile {
  left: 19.0%;
  width: 60.5%;
  top: 82.7%;
  height: 3.6%;
  border-radius: 20px;
}

.appointment-banner-btn.btn-call-mobile {
  left: 6.5%;
  width: 36.5%;
  top: 87.0%;
  height: 6.5%;
  border-radius: 25px;
}

/* Expand touch hitboxes for mobile viewports to keep tap target size usable */
@media (max-width: 768px) {
  .appointment-banner-wrapper {
    border-radius: 12px;
  }
  
  .appointment-banner-btn::after {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
  }
}

/* ── Visually Hidden Utility for SEO Headings ── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}