/* ==========================================================================
   AYUR VEDA MANTRA — PREMIUM DESIGN SYSTEM (ACCESSIBLE & HIGH CONTRAST)
   Brand Colors: Deep Brown (#241C16), Ayurvedic Green (#125442), White (#FFFFFF)
   Typography: Cormorant Garamond (Serif Display) & Plus Jakarta Sans (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Core Palette - High Contrast & Authentic */
  --primary-brown: #241C16;
  --primary-brown-dark: #15100C;
  --primary-brown-light: #382D24;

  --ayur-green: #125442;
  --ayur-green-dark: #0A3529;
  --ayur-green-light: #1D755D;
  --ayur-green-soft: #EEF6F3;
  --ayur-green-tint: #E2EFEA;

  --accent-gold: #B6862A;
  --accent-gold-light: #DFC06C;
  --accent-gold-soft: #FAF4E4;

  --bg-white: #FFFFFF;
  --bg-porcelain: #FAF8F5;
  --bg-warm-light: #F4EFEA;
  --bg-sage-light: #F1F6F4;
  --bg-card: #FFFFFF;

  /* Typography Colors - 100% High Readability */
  --text-headline: #18130E;
  --text-body: #2C2621;
  --text-muted: #5C5248;
  --text-on-dark: #FFFFFF;
  --text-on-dark-sub: #E2ECE7;

  /* Borders */
  --border-light: rgba(36, 28, 22, 0.10);
  --border-medium: rgba(36, 28, 22, 0.20);
  --border-green: rgba(18, 84, 66, 0.25);
  --border-gold: rgba(182, 134, 42, 0.40);

  /* Shadows */
  --shadow-xs: 0 2px 6px rgba(24, 19, 14, 0.04);
  --shadow-sm: 0 4px 14px rgba(24, 19, 14, 0.06);
  --shadow-md: 0 10px 28px rgba(24, 19, 14, 0.09);
  --shadow-lg: 0 18px 45px rgba(24, 19, 14, 0.13);
  --shadow-xl: 0 24px 60px rgba(24, 19, 14, 0.18);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 860px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-porcelain);
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY & HEADINGS
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--text-headline);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.6rem, 5vw + 1rem, 4.4rem);
}

h2 {
  font-size: clamp(2.1rem, 3.6vw + 0.5rem, 3.3rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw + 0.4rem, 2.1rem);
}

h4 {
  font-size: clamp(1.2rem, 1.5vw + 0.2rem, 1.5rem);
}

.tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ayur-green);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.tagline::before,
.tagline::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--ayur-green);
}

.tagline-dark {
  color: var(--accent-gold-light);
}

.tagline-dark::before,
.tagline-dark::after {
  background-color: var(--accent-gold-light);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 400;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section-padding {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* Grid Layouts */
.grid-2,
.grid-3,
.grid-4 {
  min-width: 0;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
}

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

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

@media (max-width: 1080px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BUTTONS (CRYSTAL-CLEAR READABILITY & CONTRAST)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn * {
  color: inherit;
  transition: inherit;
}

/* Primary Green Button */
.btn-primary {
  background-color: var(--ayur-green);
  color: #FFFFFF !important;
  border-color: var(--ayur-green);
  box-shadow: 0 4px 16px rgba(18, 84, 66, 0.3);
}

.btn-primary:hover {
  background-color: var(--ayur-green-dark);
  border-color: var(--ayur-green-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 84, 66, 0.4);
}

/* Secondary Brown/Dark Button */
.btn-secondary {
  background-color: var(--primary-brown);
  color: #FFFFFF !important;
  border-color: var(--primary-brown);
  box-shadow: 0 4px 16px rgba(36, 28, 22, 0.25);
}

.btn-secondary:hover {
  background-color: var(--primary-brown-dark);
  border-color: var(--primary-brown-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 28, 22, 0.35);
}

/* Outline Green Button */
.btn-outline {
  background-color: #FFFFFF;
  color: var(--ayur-green) !important;
  border-color: var(--ayur-green);
}

.btn-outline:hover {
  background-color: var(--ayur-green);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 84, 66, 0.25);
}

/* Outline Dark Button */
.btn-outline-dark {
  background-color: transparent;
  color: var(--primary-brown) !important;
  border-color: var(--primary-brown);
}

.btn-outline-dark:hover {
  background-color: var(--primary-brown);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Outline White (for dark sections) */
.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--primary-brown) !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* WhatsApp Green Action Button */
.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF !important;
  border-color: #25D366;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  border-color: #1EBE5D;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   NAVIGATION / HEADER (BALANCED SPACING & LARGER LOGO)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0.80rem 0;
}

.site-header .container {
  max-width: 1420px;
  padding-left: clamp(1rem, 2.5vw, 2.5rem);
  padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  padding: 0.45rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border-light);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.5rem);
  width: 100%;
  max-width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.80rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img,
.brand-logo .brand-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
  flex-shrink: 0;
}

.site-header.scrolled .brand-logo img,
.site-header.scrolled .brand-logo .brand-logo-img {
  height: 46px;
}

.footer-brand .brand-logo img {
  height: 72px;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-logo-text .logo-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: 0.02em;
  white-space: nowrap !important;
  transition: color var(--transition-fast);
}

.brand-logo-text .logo-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
  width: 100%;
}

.brand-logo-text .logo-sub span {
  display: block;
  white-space: nowrap !important;
  line-height: 1.25;
}

.brand-logo-text .logo-sub span:first-child {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold-light);
}

.brand-logo-text .logo-sub span:last-child {
  font-size: 0.48rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(223, 192, 108, 0.92);
}

.site-header.scrolled .brand-logo-text .logo-title {
  color: var(--text-headline);
}

.site-header.scrolled .brand-logo-text .logo-sub span:first-child {
  color: var(--ayur-green);
}

.site-header.scrolled .brand-logo-text .logo-sub span:last-child {
  color: var(--ayur-green-dark);
  opacity: 0.88;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.4vw, 1.9rem);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 0.4rem 0;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: color var(--transition-fast);
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold-light);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-header.scrolled .nav-link {
  color: var(--text-body);
  text-shadow: none;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--ayur-green);
}

.site-header.scrolled .nav-link::after {
  background-color: var(--ayur-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-shrink: 0;
  white-space: nowrap !important;
}

.phone-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  white-space: nowrap !important;
  flex-shrink: 0;
  line-height: 1.2;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.phone-quicklink span {
  white-space: nowrap !important;
  display: inline-block;
}

.phone-quicklink:hover {
  color: var(--accent-gold-light);
  transform: translateY(-1px);
}

.site-header.scrolled .phone-quicklink {
  color: var(--ayur-green);
  text-shadow: none;
}

.site-header.scrolled .phone-quicklink:hover {
  color: var(--ayur-green-dark);
}

.nav-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap !important;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.52rem 1.15rem;
  border-radius: var(--radius-full);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  z-index: 1001;
}

.menu-toggle:hover,
.menu-toggle:active {
  background: rgba(0, 0, 0, 0.55);
  border-color: var(--accent-gold-light);
  color: var(--accent-gold-light);
  transform: scale(1.04);
}

.site-header.scrolled .menu-toggle {
  background: var(--bg-sage-light);
  border: 1.5px solid var(--border-green);
  color: var(--ayur-green-dark);
  box-shadow: 0 2px 8px rgba(18, 84, 66, 0.1);
}

.site-header.scrolled .menu-toggle:hover,
.site-header.scrolled .menu-toggle:active {
  background: var(--ayur-green);
  color: #FFFFFF;
  border-color: var(--ayur-green);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 350px;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #FFFFFF;
  z-index: 2000;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 16, 12, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: var(--bg-warm-light);
  border: 1px solid var(--border-medium);
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-headline);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.drawer-close:hover,
.drawer-close:active {
  background: var(--ayur-green);
  color: #FFFFFF;
  border-color: var(--ayur-green);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-headline);
  display: block;
}

.drawer-link.active,
.drawer-link:hover {
  color: var(--ayur-green);
  padding-left: 0.5rem;
  transition: padding var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(21, 16, 12, 0.88) 0%,
      rgba(18, 84, 66, 0.76) 55%,
      rgba(21, 16, 12, 0.90) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(223, 192, 108, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-title span {
  color: var(--accent-gold-light);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.75;
  color: #F4F8F6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(18, 84, 66, 0.6);
  border: 1.5px solid var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 1.15rem;
}

.trust-item-text {
  display: flex;
  flex-direction: column;
}

.trust-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
}

.trust-item-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Inner Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-brown-dark) 0%, var(--ayur-green-dark) 100%);
  padding: 10rem 0 4.5rem;
  color: #FFFFFF;
  position: relative;
  text-align: center;
}

.page-banner h1 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.page-banner p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--text-on-dark-sub);
  font-size: 1.15rem;
  line-height: 1.7;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: var(--accent-gold-light);
  font-weight: 600;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   DOCTOR SPOTLIGHT SECTION (REFINED & 100% READABLE)
   ========================================================================== */
.doctor-spotlight-section {
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.doctor-image-box {
  position: relative;
}

.doctor-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 10px solid #FFFFFF;
  background-color: var(--bg-warm-light);
  aspect-ratio: 4 / 5;
}

.doctor-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.4);
}

/* REFINED DOCTOR RECTANGLE BADGE: High-contrast white card with deep green accent */
.doctor-exp-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background-color: #FFFFFF;
  color: var(--text-headline);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 35px rgba(24, 19, 14, 0.16);
  border: 1px solid rgba(18, 84, 66, 0.15);
  border-left: 5px solid var(--ayur-green);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 10;
}

.doctor-exp-badge .number {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ayur-green);
}

.doctor-exp-badge .label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-headline);
}

.doctor-content h2 {
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.doctor-designation {
  font-size: 1.12rem;
  color: var(--ayur-green);
  font-weight: 700;
  margin-bottom: 1.35rem;
}

/* REFINED QUOTE BOX: High-contrast soft sage with green border */
.doctor-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-headline);
  background-color: var(--bg-sage-light);
  border-left: 4px solid var(--ayur-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.6rem;
  margin: 1.75rem 0;
  line-height: 1.65;
  box-shadow: var(--shadow-xs);
}

/* REFINED CHECKLIST PILLS: High-contrast distinct badges */
.doctor-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.75rem 0 2.25rem;
}

.doctor-point-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-headline);
  background-color: var(--bg-porcelain);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.doctor-point-icon {
  color: var(--ayur-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.doctor-actions-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

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

  .doctor-exp-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .doctor-points {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CARDS & SECTIONS (TREATMENTS & PILLARS)
   ========================================================================== */
.card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ayur-green);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--bg-warm-light);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--ayur-green);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--text-headline);
}

.card-text {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.9rem 1.1rem;
  background-color: var(--bg-sage-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--ayur-green);
  font-size: 0.88rem;
  color: var(--text-headline);
}

.card-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.card-meta-item i {
  color: var(--ayur-green);
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Feature Pillars */
.pillars-section {
  background-color: var(--bg-warm-light);
  position: relative;
}

.pillar-card {
  background-color: #FFFFFF;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--ayur-green);
}

.pillar-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  background-color: var(--ayur-green-soft);
  color: var(--ayur-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
}

.pillar-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-headline);
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   TREATMENTS PAGE & FILTER TABS
   ========================================================================== */
.treatment-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.8rem 1.6rem;
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  color: var(--text-headline);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  border-color: var(--ayur-green);
  color: var(--ayur-green);
}

.filter-btn.active {
  background-color: var(--ayur-green);
  border-color: var(--ayur-green);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(18, 84, 66, 0.3);
}

.treatment-category-header {
  padding: 1.25rem 0 0.85rem;
  margin: 3rem 0 1.5rem;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.treatment-category-header h3 {
  color: var(--text-headline);
  font-size: 1.85rem;
}

.treatment-category-header span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ayur-green);
}

/* ==========================================================================
   PRODUCTS CATALOGUE
   ========================================================================== */
.product-notice-banner {
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-green);
  border-left: 6px solid var(--ayur-green);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.notice-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.notice-icon {
  font-size: 2.2rem;
  color: #25D366;
}

.notice-text h4 {
  color: var(--text-headline);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.notice-text p {
  font-size: 0.95rem;
  color: var(--text-body);
}

.product-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ayur-green);
}

.product-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-warm-light);
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-brown);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.product-details {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--text-headline);
}

.product-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  margin-bottom: 1.15rem;
  line-height: 1.6;
  flex-grow: 1;
}

.product-ingredients {
  font-size: 0.85rem;
  color: var(--text-headline);
  background-color: var(--bg-sage-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.35rem;
  border-left: 3px solid var(--ayur-green);
  line-height: 1.55;
}

.product-ingredients strong {
  color: var(--ayur-green);
}

.product-action-box {
  margin-top: auto;
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info-panel {
  background-color: var(--primary-brown);
  color: #FFFFFF;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-panel h3 {
  color: #FFFFFF;
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-on-dark-sub);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(18, 84, 66, 0.7);
  border: 1.5px solid var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-method-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-light);
  font-weight: 700;
}

.contact-method-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-form-card {
  background-color: #FFFFFF;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.35rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.9rem 1.15rem;
  font-size: 0.96rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background-color: var(--bg-porcelain);
  color: var(--text-headline);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--ayur-green);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(18, 84, 66, 0.15);
}

select.form-control {
  max-width: 100%;
  box-sizing: border-box;
  text-overflow: ellipsis;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 868px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--ayur-green);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-headline);
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--ayur-green);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem;
}

.faq-content p {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-brown-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 1.35rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-gold-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  padding-left: 0.35rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.94rem;
}

.footer-contact-item i {
  color: var(--accent-gold-light);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.88rem;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--accent-gold-light);
}

.footer-legal-links .divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

.footer-disclaimer-text {
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-gold);
}

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

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

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.75rem;
  }

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

/* ==========================================================================
   LEGAL / PRIVACY & MEDICAL DISCLAIMER PAGE
   ========================================================================== */
/* ==========================================================================
   LEGAL / PRIVACY & MEDICAL DISCLAIMER PAGE
   ========================================================================== */
.legal-container {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--ayur-green-dark);
  margin-bottom: 0.75rem;
}

.legal-header .legal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.legal-card:hover {
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--ayur-green-dark);
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-card h2 i {
  color: var(--ayur-green);
  font-size: 1.3rem;
}

.legal-card p,
.legal-card li {
  line-height: 1.8;
  color: var(--text-body);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.legal-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.legal-disclaimer-box {
  background: rgba(18, 84, 66, 0.06);
  border-left: 4px solid var(--ayur-green);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.legal-disclaimer-box strong {
  color: var(--ayur-green-dark);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: #FFFFFF !important;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
  animation: floatPulse 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
  background-color: #1EBE5D;
  color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  font-size: 1.5rem;
}

@keyframes floatPulse {

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

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

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.9rem;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp i {
    font-size: 1.85rem;
  }
}

@media (max-width: 1180px) {
  .nav-menu {
    display: none !important;
  }

  .phone-quicklink {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .nav-actions {
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
  }
}

@media (min-width: 1181px) and (max-width: 1340px) {
  .site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-wrapper {
    gap: 0.75rem;
  }

  .brand-logo {
    gap: 0.65rem;
  }

  .brand-logo img,
  .brand-logo .brand-logo-img {
    height: 48px;
  }

  .brand-logo-text .logo-title {
    font-size: 1.20rem;
  }

  .brand-logo-text .logo-sub span:first-child {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .brand-logo-text .logo-sub span:last-child {
    font-size: 0.44rem;
    letter-spacing: 0.04em;
  }

  .nav-menu {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.88rem;
    padding: 0.35rem 0;
    white-space: nowrap !important;
  }

  .phone-quicklink {
    font-size: 0.84rem;
    gap: 0.35rem;
    white-space: nowrap !important;
  }

  .phone-quicklink span {
    white-space: nowrap !important;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .nav-actions .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.80rem;
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   CTA BANNER SECTION (CLEAN ORIGINAL STYLE WITH HIGH-CONTRAST COLORS)
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary-brown-dark) 0%, var(--ayur-green-dark) 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-banner-section h2 {
  color: #FFFFFF !important;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-banner-section p {
  color: #F0F6F3 !important;
  font-size: 1.18rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-banner-section .tagline-dark {
  color: var(--accent-gold-light);
  margin-bottom: 1rem;
}

.cta-banner-section .tagline-dark::before,
.cta-banner-section .tagline-dark::after {
  background-color: var(--accent-gold-light);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & RESPONSIVE ENHANCEMENTS
   Breakpoints: 1024px (Tablet Landscape), 768px (Tablet Portrait), 480px (Mobile)
   ========================================================================== */

/* Touch Target Minimum & Input Zoom Prevention */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

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

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Prevent iOS input auto-zoom on focus */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Header & Navigation on Mobile */
  .site-header {
    padding: 0.5rem 0;
  }

  .site-header.scrolled {
    padding: 0.35rem 0;
  }

  .nav-wrapper {
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .brand-logo {
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-logo img,
  .brand-logo .brand-logo-img {
    height: 42px;
  }

  .site-header.scrolled .brand-logo img,
  .site-header.scrolled .brand-logo .brand-logo-img {
    height: 38px;
  }

  .brand-logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo-text .logo-title {
    font-size: 1.15rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo-text .logo-sub {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 1px;
    width: 100%;
  }

  .brand-logo-text .logo-sub span {
    display: block !important;
    white-space: nowrap;
    line-height: 1.2;
  }

  .brand-logo-text .logo-sub span:first-child {
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.13em;
  }

  .brand-logo-text .logo-sub span:last-child {
    font-size: 0.40rem;
    font-weight: 600;
    letter-spacing: 0.045em;
    display: block !important;
    opacity: 0.92;
  }

  .nav-actions {
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
    align-items: center;
  }

  .nav-actions .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: var(--radius-full);
    flex-shrink: 0;
  }

  .menu-toggle {
    display: flex !important;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height: auto;
    padding-top: 6.8rem;
    padding-bottom: 4rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 1rem;
    margin-bottom: 1.1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 1.1rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.96rem;
  }

  .hero-trust-bar {
    gap: 1.25rem;
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-item {
    gap: 0.75rem;
  }

  .trust-item-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* Inner Page Banners */
  .page-banner {
    padding: 6.8rem 0 3rem;
  }

  .page-banner h1 {
    font-size: clamp(2rem, 7.5vw, 2.7rem);
  }

  .page-banner p {
    font-size: 0.98rem;
  }

  /* Section Padding & Headings */
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-header h2 {
    font-size: clamp(1.85rem, 6.5vw, 2.4rem);
  }

  /* Doctor Spotlight Mobile */
  .doctor-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .doctor-image-box {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .doctor-image-wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-width: 6px;
    box-sizing: border-box;
  }

  .doctor-exp-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .doctor-content {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .doctor-content .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    word-break: break-word;
    box-sizing: border-box;
    padding: 0.95rem 1.4rem;
    min-height: 48px;
  }

  .doctor-quote {
    font-size: 1.08rem;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .doctor-points {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin: 1.25rem 0 1.75rem;
  }

  .doctor-actions-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }

  .doctor-actions-group .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    word-break: break-word;
    box-sizing: border-box;
  }

  /* Treatment Filters Horizontal Scroll on Mobile */
  .treatment-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.5rem 0.25rem 1rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.6rem;
  }

  .treatment-filters::-webkit-scrollbar {
    height: 4px;
  }

  .treatment-filters::-webkit-scrollbar-thumb {
    background: var(--ayur-green-light);
    border-radius: var(--radius-full);
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.2rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .treatment-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 2rem 0 1rem;
  }

  .treatment-category-header h3 {
    font-size: 1.5rem;
  }

  /* Card Elements Mobile */
  .card-body {
    padding: 1.35rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-footer {
    flex-direction: column;
    gap: 0.65rem;
  }

  .card-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* Product Cards & Notice Banner */
  .product-notice-banner {
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.25rem;
  }

  .product-notice-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .product-details {
    padding: 1.35rem;
  }

  .product-title {
    font-size: 1.22rem;
  }

  .product-action-box .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact Page Mobile */
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: clamp(1.25rem, 4vw, 1.75rem);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-info-panel h3 {
    font-size: 1.5rem;
  }

  .contact-form-card h2 {
    font-size: 1.75rem;
  }

  .contact-form-card .btn,
  .contact-info-panel .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    word-break: break-word;
    box-sizing: border-box;
    padding: 0.95rem 1.4rem;
    min-height: 48px;
  }

  .contact-form-card .form-control {
    min-height: 46px;
  }

  /* FAQ Accordion Mobile */
  .faq-header {
    padding: 1.1rem 1.25rem;
    font-size: 1.12rem;
  }

  .faq-content {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-content {
    padding: 0 1.25rem 1.25rem;
  }

  /* CTA Banner Mobile */
  .cta-banner-section .btn {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    white-space: normal;
    text-align: center;
    word-break: break-word;
    box-sizing: border-box;
  }

  .tagline {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    max-width: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
  }

  .btn-lg {
    padding: 0.95rem 1.5rem;
    font-size: 0.98rem;
  }

  .btn-full {
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .footer-brand .brand-logo img {
    height: 56px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Small Mobile Phones (<= 540px) */
@media (max-width: 540px) {
  .site-header {
    padding: 0.4rem 0;
  }

  .brand-logo {
    gap: 0.45rem;
  }

  .brand-logo img,
  .brand-logo .brand-logo-img {
    height: 38px;
  }

  .site-header.scrolled .brand-logo img,
  .site-header.scrolled .brand-logo .brand-logo-img {
    height: 34px;
  }

  .brand-logo-text .logo-title {
    font-size: 1.05rem;
  }

  .brand-logo-text .logo-sub {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 1px;
    width: 100%;
  }

  .brand-logo-text .logo-sub span {
    display: block !important;
    white-space: nowrap;
    line-height: 1.2;
  }

  .brand-logo-text .logo-sub span:first-child {
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .brand-logo-text .logo-sub span:last-child {
    font-size: 0.38rem;
    font-weight: 600;
    letter-spacing: 0.038em;
    display: block !important;
    opacity: 0.92;
  }

  /* WhatsApp button in mobile navbar becomes a clean, compact circular icon */
  .nav-actions {
    gap: 0.45rem;
  }

  .nav-actions .btn span {
    display: none !important;
  }

  .nav-actions .btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #25D366 !important;
    border: 1.5px solid #25D366 !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35) !important;
    flex-shrink: 0 !important;
  }

  .nav-actions .btn i {
    font-size: 1.25rem !important;
    margin: 0 !important;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.15rem;
  }
}

/* Extra Small Phones (<= 380px) */
@media (max-width: 380px) {
  .brand-logo img,
  .brand-logo .brand-logo-img {
    height: 34px;
  }

  .brand-logo-text .logo-title {
    font-size: 0.95rem;
  }

  .brand-logo-text .logo-sub {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 1px;
    width: 100%;
  }

  .brand-logo-text .logo-sub span {
    display: block !important;
    white-space: nowrap;
    line-height: 1.2;
  }

  .brand-logo-text .logo-sub span:first-child {
    font-size: 0.41rem;
    font-weight: 700;
    letter-spacing: 0.10em;
  }

  .brand-logo-text .logo-sub span:last-child {
    font-size: 0.34rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: block !important;
    opacity: 0.92;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .nav-actions .btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  .nav-actions .btn i {
    font-size: 1.1rem !important;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .card-body,
  .product-details,
  .contact-info-panel,
  .contact-form-card {
    padding: 1.15rem;
  }
}

/* ==========================================================================
   MOBILE PHONES (<= 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tagline {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    gap: 0.4rem;
  }

  .tagline::before,
  .tagline::after {
    width: 14px;
  }

  /* Contact Page on Phones */
  .contact-grid {
    gap: 1.5rem;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .contact-form-card h2 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .contact-form-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem !important;
  }

  .contact-info-panel h3 {
    font-size: 1.35rem;
  }

  .contact-method-list {
    gap: 1.15rem;
    margin-bottom: 1.75rem;
  }

  .contact-method-item {
    gap: 0.75rem;
  }

  .contact-method-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.05rem;
  }

  .contact-method-label {
    font-size: 0.75rem;
  }

  .contact-method-val {
    font-size: 0.92rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
  }

  .form-control {
    padding: 0.8rem 0.95rem;
    font-size: 0.92rem;
    min-height: 44px;
  }

  textarea.form-control {
    min-height: 100px;
  }

  .contact-form-card .btn,
  .contact-info-panel .btn,
  .doctor-content .btn,
  .cta-banner-section .btn {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    line-height: 1.35;
    border-radius: var(--radius-md);
    gap: 0.5rem;
  }

  /* Location Card on Phones */
  .location-directions-card {
    padding: 1.25rem 1rem !important;
    margin-top: 2rem !important;
  }

  .location-directions-header {
    flex-direction: column;
    align-items: stretch !important;
    gap: 1rem !important;
  }

  .location-directions-actions {
    width: 100%;
    flex-direction: column;
  }

  .location-directions-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Doctor Section on Small Phones */
  .doctor-image-wrapper {
    max-width: 280px;
  }

  .doctor-exp-badge {
    max-width: 280px;
    padding: 0.85rem 1.15rem;
  }

  .doctor-exp-badge .number {
    font-size: 1.55rem;
  }

  .doctor-exp-badge .label {
    font-size: 0.72rem;
  }

  .doctor-content h2 {
    font-size: 1.65rem;
  }

  .doctor-designation {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }

  .doctor-quote {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  /* About Page Cards */
  .service-feature-card {
    padding: 1.35rem 1.15rem !important;
  }

  .credentials-card {
    padding: 1.25rem 1rem !important;
  }

  .philosophy-card {
    padding: 1.5rem 1rem !important;
  }

  /* Testimonials Trust Pill */
  .testimonials-trust-pill {
    padding: 0.6rem 0.85rem;
    gap: 0.5rem;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .google-badge-pill {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
  }

  .testimonials-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   EXTRA SMALL PHONES (<= 360px)
   ========================================================================== */
@media (max-width: 360px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 1rem 0.75rem;
  }

  .contact-form-card h2 {
    font-size: 1.3rem;
  }

  .contact-form-card .btn,
  .contact-info-panel .btn,
  .doctor-content .btn {
    font-size: 0.86rem;
    padding: 0.75rem 0.65rem;
  }

  .doctor-image-wrapper {
    max-width: 240px;
  }

  .doctor-exp-badge {
    max-width: 240px;
    padding: 0.75rem 0.95rem;
  }
}

/* ==========================================================================
   TESTIMONIALS COMPONENT — REFERENCE: SALMARA AYURVEDA (MOVING IN TITLE CARDS)
   ========================================================================== */
.testimonials-marquee-section {
  background-color: var(--bg-warm-light);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 5rem;
}

.tagline-marquee {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.marquee-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--primary-brown);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.testimonials-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
}

.google-badge-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.google-badge-pill .google-g-icon {
  background: conic-gradient(
    from -45deg,
    #ea4335 110deg,
    #4285f4 90deg 180deg,
    #34a853 180deg 270deg,
    #fbbc05 270deg
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
}

.google-badge-pill .rating-num {
  font-weight: 800;
  color: var(--text-headline);
  font-size: 1.05rem;
}

.google-badge-pill .stars-mini {
  color: #FBBC04;
  display: inline-flex;
  gap: 2px;
  font-size: 0.82rem;
}

.google-badge-pill .reviews-count {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.testimonials-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
}

.testimonials-links a {
  color: var(--ayur-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.testimonials-links a:hover {
  color: var(--ayur-green-dark);
  text-decoration: underline;
}

.divider-dot {
  color: var(--border-medium);
}

/* Infinite Marquee Container & Animation */
.marquee-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 3.25rem;
  padding: 1.25rem 0;
  user-select: none;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-warm-light) 25%, rgba(244, 239, 234, 0));
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-warm-light) 25%, rgba(244, 239, 234, 0));
}

.marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
  padding: 0.75rem 1.5rem;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Salmara-Style Testimonial Card */
.salmara-card {
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  min-height: 290px;
  background: #FFFFFF;
  border: 1px solid rgba(36, 28, 22, 0.08);
  border-radius: 22px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(36, 28, 22, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.salmara-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(18, 84, 66, 0.12);
  border-color: rgba(18, 84, 66, 0.25);
}

.salmara-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.salmara-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--accent-gold);
  font-size: 1.05rem;
}

.salmara-treatment-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background-color: var(--ayur-green-soft);
  color: var(--ayur-green-dark);
  border-radius: var(--radius-full);
  border: 1px solid rgba(18, 84, 66, 0.12);
  max-width: 170px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.salmara-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  flex-grow: 1;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.salmara-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(36, 28, 22, 0.07);
}

.salmara-reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.salmara-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #3E5F48;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.salmara-meta {
  display: flex;
  flex-direction: column;
}

.salmara-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-headline);
  line-height: 1.25;
}

.salmara-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.salmara-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #EFECE6;
  color: #5C5248;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.salmara-verified-badge i {
  color: var(--ayur-green);
  font-size: 0.75rem;
}

/* Pause indicator / Drag info note */
.marquee-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

@media (max-width: 640px) {
  .salmara-card {
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    padding: 1.75rem 1.4rem;
  }
  
  .marquee-fade-left,
  .marquee-fade-right {
    width: 35px;
  }
}