:root {
  /* Brand colors extracted from Chiraayu Logo */
  /* 1. Chiraayu Warm Terracotta (Logo Name Wordmark) */
  --primary-color: #DE5427;
  --primary-dark: #C5431A;
  --primary-light: #FEF3EE;
  --primary-subtle: #FBD8CC;

  /* 2. Chiraayu Royal Indigo (Silhouettes & Wellness Text) */
  --brand-indigo: #27194D;
  --brand-indigo-dark: #180F33;
  --brand-indigo-light: #F6F5FB;
  --brand-indigo-subtle: #E4E0F0;

  /* 3. Herbal Jade Teal (Mortar Leaves & Healing Circle Wave) */
  --brand-teal: #2D8B79;
  --brand-teal-dark: #206E5F;
  --brand-teal-light: #EFF8F5;
  --brand-teal-subtle: #CCEBE3;

  /* 4. Marigold Sun Gold (Pestle & Organic Wave Lines) */
  --accent-gold: #ECA027;
  --accent-gold-dark: #D48C18;
  --accent-gold-light: #FEF8EC;
  --accent-gold-subtle: #FCE6BA;

  /* Brand Accents */
  --accent-color: #DE5427;
  --accent-hover: #C5431A;
  --accent-light: #FEF3EE;
  --accent-subtle: #FBD8CC;

  /* Minimalist Surface & Typography System */
  --text-dark: #1C1238;
  /* Deep Indigo Slate for crisp, high-contrast headings */
  --text-muted: #58556A;
  /* Refined neutral slate for easy reading */
  --text-light: #8D8A9F;
  /* Muted meta text */
  --background: #FAFAFC;
  /* Clean, luminous, serene minimal canvas */
  --bg-surface: #FFFFFF;
  /* Pure white card surface */
  --border-soft: #EAEAF2;
  /* Minimal hairline border */
  --border-focus: #DE5427;

  /* Minimal Elevation & Radii */
  --shadow-sm: 0 2px 8px rgba(39, 25, 77, 0.03);
  --shadow-soft: 0 6px 20px rgba(39, 25, 77, 0.05);
  --shadow-hover: 0 12px 32px rgba(39, 25, 77, 0.09);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--background);
  line-height: 1.68;
  font-size: 15.5px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-subtle);
}

.feature-split .eyebrow,
.yoga-section .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.22);
}

.section-pad {
  padding: 96px 0;
}

@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }
}

.section-tint {
  background: var(--brand-indigo-light);
  position: relative;
}

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.22;
  margin-top: 6px;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-head p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .section-head h2 {
    font-size: 27px;
  }
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 11px 26px;
  font-size: 14.5px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-brand {
  background: var(--primary-color);
  color: #FFFFFF !important;
  border-color: var(--primary-color);
}

.btn-primary-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(222, 84, 39, 0.25);
}

.btn-outline-brand {
  background: #FFFFFF;
  color: var(--brand-indigo) !important;
  border-color: var(--border-soft);
}

.btn-outline-brand:hover {
  background: var(--brand-indigo);
  border-color: var(--brand-indigo);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background: var(--brand-indigo);
  color: #FFFFFF !important;
  border-color: var(--brand-indigo);
}

.btn-accent:hover {
  background: var(--brand-indigo-dark);
  border-color: var(--brand-indigo-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 25, 77, 0.22);
}

.btn-sm-pill {
  padding: 8px 20px;
  font-size: 13.5px;
}

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(250, 250, 252, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid var(--border-soft);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(39, 25, 77, 0.05);
  border-bottom: 1px solid var(--border-soft);
}

#site-header .navbar {
  padding: 8px 0;
  transition: padding 0.25s ease;
}

#site-header.scrolled .navbar {
  padding: 4px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.brand-logo img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
  transition: height 0.25s ease, width 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(39, 25, 77, 0.08);
}

#site-header.scrolled .brand-logo img {
  height: 75px;
  width: 75px;
}

.brand-logo .brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18.5px;
  color: var(--brand-indigo);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand-logo .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.navbar-toggler {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: var(--bg-surface);
  transition: all 0.2s ease;
}

.navbar-toggler:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(222, 84, 39, 0.15);
}

.main-nav .nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* ============ NAVBAR DROPDOWN STYLING ============ */
.main-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.main-nav .dropdown-toggle::after {
  display: none !important;
}

.main-nav .nav-dropdown-arrow {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.2s ease;
}

.main-nav .nav-link:hover .nav-dropdown-arrow,
.main-nav .nav-link.active .nav-dropdown-arrow {
  color: var(--primary-color);
}

.main-nav .chiraayu-nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  background: var(--bg-surface);
  border: 1px solid rgba(39, 25, 77, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(39, 25, 77, 0.12);
  padding: 8px;
  min-width: 260px;
  margin-top: 10px;
  border-top: 3px solid var(--primary-color);
}

.nav-dropdown-item {
  display: flex !important;
  flex-direction: column;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  color: var(--text-dark) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.nav-dropdown-item .dropdown-item-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.nav-dropdown-item .dropdown-item-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background: var(--primary-light) !important;
  transform: translateX(3px);
}

.nav-dropdown-item:hover .dropdown-item-title,
.nav-dropdown-item.active .dropdown-item-title {
  color: var(--primary-color) !important;
}

.nav-dropdown-item.active {
  background: var(--primary-light) !important;
}

.nav-dropdown-menu .dropdown-divider {
  margin: 4px 8px;
  border-color: rgba(39, 25, 77, 0.06);
}

/* Click-only dropdown styling - visible only when clicked/opened (.show) */
.main-nav .dropdown.show>.dropdown-menu,
.main-nav .dropdown-menu.show {
  display: block;
  animation: navDropdownFadeIn 0.22s ease forwards;
}

.main-nav .dropdown.show .nav-dropdown-arrow,
.main-nav .dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 992px) {

  .main-nav .dropdown.show>.nav-dropdown-menu-grid,
  .main-nav .nav-dropdown-menu-grid.show {
    min-width: 480px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 10px;
  }

  .nav-dropdown-menu-grid .dropdown-divider-full {
    grid-column: 1 / -1;
    margin: 6px 0;
  }

  .nav-dropdown-menu-grid .dropdown-view-all {
    grid-column: 1 / -1;
    background: var(--brand-indigo-light) !important;
    border-radius: var(--radius-sm);
  }
}

@keyframes navDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-select {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 13px;
  background: var(--bg-surface);
  color: var(--text-dark);
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.lang-select:focus {
  border-color: var(--primary-color);
}

/* Google Translate System Integration - Complete Banner & Popup Suppressor */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
iframe[class*="VIpgJd"],
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-y60fut-tUoAbe,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.goog-te-gadget-simple,
.goog-te-menu-value,
.goog-te-spinner-pos,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

html {
  top: 0px !important;
  padding-top: 0px !important;
  margin-top: 0px !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

#google_translate_element {
  display: none !important;
}

.header-call {
  color: var(--primary-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  transition: all 0.2s ease;
}

.header-call:hover {
  background: var(--primary-color);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-surface);
    margin-top: 14px;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 36px rgba(39, 25, 77, 0.1);
    border: 1px solid var(--border-soft);
  }

  .main-nav {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
  }

  .main-nav .nav-link {
    padding: 10px 14px !important;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    background: var(--primary-light);
    color: var(--primary-color) !important;
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .header-actions {
    width: 100%;
    margin-top: 14px;
    justify-content: space-between;
    gap: 10px;
  }

  .header-actions .btn-sm-pill {
    flex: 1;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 76px 0 68px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(246, 245, 251, 0.7) 0%, rgba(250, 250, 252, 1) 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.hero-shape.s1 {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -100px;
  background: rgba(39, 25, 77, 0.04);
}

.hero-shape.s2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: -60px;
  background: rgba(222, 84, 39, 0.05);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 32px;
  }
}

.hero p.lead-text {
  font-size: 16.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 520px;
}

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

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14.5px;
}

.hero-call i {
  color: var(--primary-color);
  font-size: 17px;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
  object-fit: cover;
  height: 440px;
  border: 1px solid var(--border-soft);
}

@media (max-width: 991px) {
  .hero-img-wrap img {
    height: 290px;
    margin-top: 32px;
  }
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  border: 1px solid var(--border-soft);
}

@media (max-width: 991px) {
  .hero-badge {
    left: 12px;
    bottom: 12px;
  }
}

.hero-badge .icon-circle {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-badge strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 600;
}

.hero-badge span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Trust bar */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 30px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}

.trust-item i {
  font-size: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.trust-item span {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
  display: block;
}

/* Cards - How we help */
.care-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  height: 100%;
  border: 1px solid var(--border-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-subtle);
}

.care-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.25s ease;
}

.care-card:hover .icon-box {
  background: var(--primary-color);
  color: #FFFFFF;
}

.care-card h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.care-card p {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.care-card .learn-link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.care-card .learn-link i {
  transition: transform 0.2s ease;
}

.care-card:hover .learn-link i {
  transform: translateX(4px);
}

/* Treatment cards with image */
.treat-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.treat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-indigo-subtle);
}

.treat-card .treat-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.treat-card .treat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.treat-card .treat-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-indigo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

.treat-card .treat-body {
  padding: 22px;
}

.treat-card h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.treat-card p {
  font-size: 13.5px;
  margin-bottom: 12px;
}

.treat-card .learn-link {
  color: var(--primary-color);
}

/* Featured split section */
.feature-split {
  background: linear-gradient(135deg, #1C113B 0%, #2A1A54 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #FFFFFF;
  box-shadow: var(--shadow-hover);
}

.feature-split .feature-img {
  height: 100%;
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

.feature-split .feature-content {
  padding: 48px 42px;
}

@media (max-width: 767px) {
  .feature-split .feature-content {
    padding: 32px 24px;
  }
}

.feature-split h2 {
  color: #FFFFFF;
  font-size: 28px;
  margin-bottom: 14px;
}

.feature-split p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.feature-list li i {
  color: var(--accent-gold);
  margin-top: 3px;
  font-size: 15px;
}

/* Symptom finder */
.symptom-pill {
  display: inline-block;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin: 5px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.symptom-pill:hover {
  background: var(--brand-indigo);
  border-color: var(--brand-indigo);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(39, 25, 77, 0.15);
}

/* Approach timeline */
.approach-track {
  position: relative;
}

.approach-track::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-soft);
}

@media (max-width: 767px) {
  .approach-track::before {
    display: none;
  }
}

.approach-step {
  text-align: center;
  position: relative;
  padding: 0 14px;
}

.approach-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.approach-step h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.approach-step p {
  font-size: 13.5px;
}

/* Doctors */
.doctor-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-indigo-subtle);
}

.doctor-photo {
  height: 220px;
  overflow: hidden;
  background: var(--brand-indigo-light);
}

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

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

.doctor-body {
  padding: 18px;
}

.doctor-body h3 {
  font-size: 15.5px;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.doctor-body .qual {
  font-size: 11.5px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.doctor-body .spec {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.doctor-body .view-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-indigo);
  transition: color 0.2s ease;
}

.doctor-body .view-link:hover {
  color: var(--primary-color);
}

/* Why chiraayu */
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.why-item .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--brand-teal-subtle);
}

.why-item h4 {
  font-size: 15.5px;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.why-item p {
  font-size: 13.5px;
  margin-bottom: 0;
}

/* Yoga section */
.yoga-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.yoga-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.yoga-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 17, 59, 0.92) 0%, rgba(28, 17, 59, 0.48) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.yoga-content {
  padding: 0 46px;
  max-width: 520px;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .yoga-content {
    padding: 0 24px;
  }

  .yoga-bg {
    height: auto;
  }

  .yoga-overlay {
    position: relative;
    background: linear-gradient(180deg, rgba(28, 17, 59, 0.8) 0%, rgba(28, 17, 59, 0.96) 100%);
    padding: 44px 0;
  }
}

.yoga-content h2 {
  color: #FFFFFF;
  font-size: 30px;
  margin-bottom: 12px;
}

.yoga-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
}

/* FAQ */
.faq-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.faq-card .card-header {
  background: var(--bg-surface);
  border: none;
  padding: 0;
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-btn:not(.collapsed) {
  color: var(--primary-color);
}

.faq-btn .plus-icon {
  transition: transform 0.25s ease;
  color: var(--primary-color);
  font-size: 16px;
}

.faq-btn:not(.collapsed) .plus-icon {
  transform: rotate(45deg);
}

.faq-card .card-body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA */
.cta-final {
  background: linear-gradient(135deg, rgba(254, 243, 238, 0.85) 0%, rgba(246, 245, 251, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  border: 1px solid var(--primary-subtle);
}

@media (max-width: 767px) {
  .cta-final {
    padding: 36px 20px;
  }
}

.cta-final h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--brand-indigo-dark);
}

.cta-final p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 15px;
}

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

/* Footer */
footer {
  background: #140C2A;
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer h5 {
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 600;
}

footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

footer a:hover {
  color: #FFFFFF;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 9px;
  font-size: 14px;
}

.footer-logo {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 2px;
  margin-bottom: 14px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 12.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  align-items: flex-start;
}

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

/* Floating buttons */
.fab-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.fab:hover {
  transform: scale(1.08);
  color: #FFFFFF !important;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--brand-indigo);
}

.fab-call:hover {
  background: var(--primary-color);
}

@keyframes gentlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.fab-whatsapp {
  animation: gentlePulse 2.4s infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-indigo);
  color: #FFFFFF;
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  color: #FFFFFF;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Health Blogs */
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-subtle);
}

.blog-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--brand-indigo-light);
}

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

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

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
  border: 1px solid var(--brand-teal-subtle);
}

.blog-body h3 {
  font-size: 18px;
  line-height: 1.38;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.blog-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.6;
}

.blog-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.blog-card:hover .blog-link {
  gap: 10px;
  color: var(--primary-dark);
}

/* Events Section */
.event-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all 0.3s ease;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-teal-subtle);
}

.event-date-badge {
  width: 72px;
  height: 78px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  border: 1px solid var(--primary-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}

.event-date-badge .day {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  font-family: var(--font-display);
}

.event-date-badge .month {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-dark);
  margin-top: 3px;
}

.event-info {
  flex-grow: 1;
}

.event-type-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--brand-indigo-light);
  color: var(--brand-indigo);
  border: 1px solid var(--brand-indigo-subtle);
  display: inline-block;
  margin-bottom: 8px;
}

.event-info h3 {
  font-size: 17.5px;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.event-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-details i {
  color: var(--primary-color);
  font-size: 14px;
}

.event-info p {
  font-size: 13.5px;
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 575px) {
  .event-card {
    flex-direction: column;
  }

  .event-date-badge {
    width: 100%;
    height: auto;
    padding: 10px;
    flex-direction: row;
    gap: 8px;
  }

  .event-date-badge .day {
    font-size: 20px;
  }
}

/* ============ APPOINTMENT SECTION ============ */
.appointment-section {
  position: relative;
  background: linear-gradient(180deg, var(--background) 0%, rgba(254, 243, 238, 0.45) 50%, var(--background) 100%);
  overflow: hidden;
}

.apt-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.65;
  animation: floatSlow 8s ease-in-out infinite alternate;
}

.apt-bg-blob.b1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -100px;
  background: rgba(222, 84, 39, 0.08);
}

.apt-bg-blob.b2 {
  width: 380px;
  height: 380px;
  bottom: -60px;
  left: -80px;
  background: rgba(45, 139, 121, 0.08);
  animation-delay: -4s;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(24px) rotate(6deg);
  }
}

/* Trust Column */
.apt-trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  position: relative;
}

.apt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

@media (max-width: 575px) {
  .apt-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.apt-feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--brand-indigo-light);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all 0.25s ease;
}

.apt-feat-item:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-subtle);
}

.apt-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid var(--primary-subtle);
}

.apt-feat-text h4 {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--text-dark);
  font-weight: 600;
}

.apt-feat-text p {
  font-size: 12px;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.4;
}

.apt-contact-strip {
  background: linear-gradient(135deg, var(--brand-indigo-dark) 0%, var(--brand-indigo) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.apt-strip-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.apt-strip-info .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.apt-strip-info h4 {
  color: #FFFFFF;
  font-size: 13.5px;
  margin-bottom: 2px;
}

.apt-strip-info a {
  color: #FFFFFF;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.apt-strip-actions {
  display: flex;
  gap: 10px;
}

.apt-strip-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.apt-btn-call {
  background: var(--primary-color);
  color: #FFFFFF !important;
}

.apt-btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.apt-btn-wa {
  background: #25D366;
  color: #FFFFFF !important;
}

.apt-btn-wa:hover {
  background: #20BA59;
  transform: translateY(-1px);
}

/* Booking Form Card */
.booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 16px 40px rgba(39, 25, 77, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

@media (max-width: 767px) {
  .booking-card {
    padding: 24px 18px;
  }
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--brand-teal));
}

.booking-card-head {
  margin-bottom: 22px;
}

.booking-card-head h3 {
  font-size: 21px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.booking-card-head p {
  font-size: 13.5px;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Type Switch Tabs */
.mode-switch {
  display: flex;
  background: var(--brand-indigo-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 22px;
  position: relative;
}

.mode-option {
  flex: 1;
  text-align: center;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  user-select: none;
}

.mode-option.active {
  background: #FFFFFF;
  color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(39, 25, 77, 0.08);
}

/* Custom Form Fields */
.form-group-custom {
  margin-bottom: 18px;
}

.form-group-custom label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group-custom label .req {
  color: var(--primary-color);
  margin-left: 3px;
}

.form-group-custom label .optional {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-light);
}

.input-wrap-custom {
  position: relative;
}

.input-wrap-custom .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-light);
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-control-custom {
  width: 100%;
  height: 48px;
  padding: 10px 14px 10px 42px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #FAFAFD;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.25s ease;
}

.form-control-custom:focus {
  background: #FFFFFF;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3.5px rgba(222, 84, 39, 0.12);
}

.form-control-custom:focus+.input-icon,
.input-wrap-custom:focus-within .input-icon {
  color: var(--primary-color);
}

textarea.form-control-custom {
  height: 84px;
  padding-top: 12px;
  padding-left: 16px;
  resize: vertical;
}

select.form-control-custom {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2358556A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Slot Radio Pills */
.slot-pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 575px) {
  .slot-pill-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.slot-pill-label {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.slot-pill-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slot-pill-box {
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 9px 8px;
  text-align: center;
  background: #FAFAFD;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slot-pill-box .slot-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.slot-pill-box .slot-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.slot-pill-label input:checked+.slot-pill-box {
  border-color: var(--primary-color);
  background: var(--primary-light);
  box-shadow: 0 2px 8px rgba(222, 84, 39, 0.12);
}

.slot-pill-label input:checked+.slot-pill-box .slot-name {
  color: var(--primary-color);
}

.slot-pill-label input:checked+.slot-pill-box .slot-time {
  color: var(--primary-dark);
}

/* Submit Button */
.btn-book-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(222, 84, 39, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(222, 84, 39, 0.35);
}

.btn-book-submit:active {
  transform: scale(0.99);
}

.btn-book-submit i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-book-submit:hover i {
  transform: translateX(4px);
}

.form-foot-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Success State View */
.apt-success-wrap {
  display: none;
  text-align: center;
  padding: 30px 10px;
  animation: aptFadeIn 0.4s ease forwards;
}

@keyframes aptFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.apt-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  border: 2px solid var(--brand-teal-subtle);
  animation: aptPulse 2s infinite;
}

@keyframes aptPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 139, 121, 0.3);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(45, 139, 121, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(45, 139, 121, 0);
  }
}

.apt-success-wrap h4 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.apt-badge-ref {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary-subtle);
}

.apt-success-details {
  background: var(--brand-indigo-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 18px;
  border: 1px solid var(--border-soft);
}

.apt-success-details .row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.apt-success-details .row-item span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.apt-success-details .row-item span i {
  color: var(--primary-color);
  font-size: 14px;
}

.apt-success-details .row-item:last-child {
  border-bottom: none;
}

.apt-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============ APPOINTMENT SUCCESS CENTER POPUP MODAL ============ */
.apt-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100050;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: aptBackdropFade 0.28s ease-out forwards;
}

@keyframes aptBackdropFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.apt-modal-dialog {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(39, 25, 77, 0.3), 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(222, 84, 39, 0.2);
  position: relative;
  overflow: hidden;
  animation: aptPopUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

@keyframes aptPopUp {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
  }

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

.apt-modal-topbar {
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-gold) 50%, var(--brand-teal) 100%);
  width: 100%;
  flex-shrink: 0;
}

.apt-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #F8FAFC;
  color: var(--text-dark);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.apt-modal-close:hover {
  background: #F1F5F9;
  color: var(--primary-color);
  transform: rotate(90deg);
}

.apt-modal-body {
  padding: 28px 24px 24px;
  text-align: center;
  overflow-y: auto;
}

.apt-modal-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.apt-modal-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.apt-badge-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.apt-badge-token {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #E0F2FE;
  color: #0369A1;
  font-weight: 700;
  font-size: 12.5px;
  border: 1px solid #BAE6FD;
}

.apt-badge-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #DCFCE7;
  color: #15803D;
  font-weight: 700;
  font-size: 12.5px;
  border: 1px solid #BBF7D0;
}

.apt-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.btn-modal-wa {
  background: #25D366;
  color: #FFFFFF !important;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-modal-wa:hover {
  background: #20BA59;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-modal-done {
  background: #F1F5F9;
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-done:hover {
  background: #E2E8F0;
  color: var(--primary-color);
}

/* ==========================================================
   SUB-NAVBAR PRAKRUTHI BANNER
   ========================================================== */
.sub-navbar-strip {
  background: linear-gradient(90deg, #27194D 0%, #3B2070 50%, #DE5427 100%);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1025;
}

.sub-navbar-strip .strip-tag {
  background: rgba(255, 255, 255, 0.18);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-right: 8px;
  text-transform: uppercase;
}

.sub-navbar-strip .strip-action-link {
  color: #FFE082 !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
  background: rgba(0, 0, 0, 0.18);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 224, 130, 0.4);
}

.sub-navbar-strip .strip-action-link:hover {
  color: #FFFFFF !important;
  background: rgba(222, 84, 39, 0.8);
  border-color: #FFFFFF;
  transform: translateX(3px);
}

/* ==========================================================
   KNOW YOUR PRAKRUTHI TEST PAGE STYLING (CHIRAAYU BRAND THEME)
   ========================================================== */
.prakruthi-section {
  padding: 55px 0 95px;
  background: var(--background);
  min-height: calc(100vh - 350px);
}

.prakruthi-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-soft);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 16px 45px rgba(39, 25, 77, 0.06);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.prakruthi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-indigo) 0%, var(--primary-color) 50%, var(--accent-gold) 100%);
  border-radius: 4px 4px 0 0;
}

.prakruthi-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-indigo);
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.prakruthi-subtitle {
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin: 0 auto 35px;
  text-transform: uppercase;
  background: var(--primary-light);
  display: table;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-subtle);
}

.prakruthi-question-row {
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.prakruthi-question-row:last-of-type {
  border-bottom: none;
}

.prakruthi-q-label {
  width: 180px;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--brand-indigo);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.prakruthi-q-options {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.prakruthi-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  margin-bottom: 0;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.prakruthi-radio-label:hover {
  color: var(--primary-color);
  background: var(--primary-light);
  border-color: var(--primary-subtle);
}

.prakruthi-radio-label input[type="radio"] {
  accent-color: var(--primary-color);
  width: 17px;
  height: 17px;
  cursor: pointer;
  margin: 0;
}

.btn-prakruthi-submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 42px;
  border-radius: var(--radius-pill);
  border: none;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 20px rgba(222, 84, 39, 0.35);
  transition: all 0.25s ease;
  margin: 32px auto 0;
  display: block;
  cursor: pointer;
}

.btn-prakruthi-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #A83612 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222, 84, 39, 0.45);
}

/* Result Card */
.prakruthi-result-wrap {
  display: none;
  margin-top: 40px;
  padding-top: 35px;
  border-top: 2px dashed var(--border-soft);
  animation: prakruthiFadeIn 0.4s ease forwards;
}

@keyframes prakruthiFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dosha-badge-dominant {
  display: inline-block;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.dosha-badge-dominant.vata {
  background: var(--brand-indigo-light);
  color: var(--brand-indigo);
  border: 1.5px solid var(--brand-indigo-subtle);
}

.dosha-badge-dominant.pitta {
  background: var(--primary-light);
  color: var(--primary-color);
  border: 1.5px solid var(--primary-subtle);
}

.dosha-badge-dominant.kapha {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  border: 1.5px solid var(--brand-teal-subtle);
}

.dosha-badge-dominant.dual {
  background: var(--accent-gold-light);
  color: #B26A00;
  border: 1.5px solid var(--accent-gold-subtle);
}

.prakruthi-meter-box {
  background: var(--brand-indigo-light);
  border-radius: 16px;
  padding: 22px 28px;
  border: 1px solid var(--brand-indigo-subtle);
  margin-bottom: 24px;
}

.prakruthi-meter-box h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.prakruthi-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.prakruthi-info-card {
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 14px rgba(39, 25, 77, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prakruthi-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 25, 77, 0.08);
}

.prakruthi-info-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prakruthi-info-card p,
.prakruthi-info-card ul {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.55;
}

.prakruthi-info-card ul {
  padding-left: 18px;
}

.prakruthi-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 767.98px) {
  .prakruthi-card {
    padding: 30px 18px;
  }

  .prakruthi-title {
    font-size: 22px;
  }

  .prakruthi-subtitle {
    font-size: 11px;
    margin-bottom: 24px;
  }

  .prakruthi-question-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0;
  }

  .prakruthi-q-label {
    width: 100%;
  }

  .prakruthi-q-options {
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
  }

  .sub-navbar-strip .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ==========================================================
   MODERN CSS GRID & FLEXBOX LAYOUT ARCHITECTURE
   (Pure CSS replacement for Bootstrap row and column classes)
   ========================================================== */

/* 1. Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 2. Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* 3. Conditions ("How We Help") Grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 4. Treatments ("Top Procedures") Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 5. Spotlight Ksharasutra Grid */
.spotlight-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

/* 6. Approach Methodology Grid (3 Process Steps) */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 7. Doctors Team Slider (4 Cards Desktop, Smooth Sliding) */
.doctors-slider-container {
  position: relative;
  width: 100%;
}

.doctors-swiper {
  width: 100%;
  padding: 8px 4px 36px;
  overflow: hidden;
}

.doctors-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.doctors-swiper .swiper-slide .doctor-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.doctors-swiper .swiper-slide .doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.doctors-swiper .doctor-photo {
  height: 300px;
  width: 100%;
  overflow: hidden;
  background: var(--brand-indigo-light);
  flex-shrink: 0;
}

.doctors-swiper .doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doctors-swiper .doctor-card:hover .doctor-photo img {
  transform: scale(1.05);
}

.doctors-swiper .doctor-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctors-swiper .doctor-body h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-dark);
  line-height: 1.3;
}

.doctors-swiper .doctor-body .qual {
  font-size: 11.5px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.doctors-swiper .doctor-body .spec {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.45;
}

.doctors-swiper .doctor-body .view-link {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-indigo);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.doctors-swiper .doctor-body .view-link:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

/* Slider Controls: Navigation Arrows & Dynamic Dots */
.doctors-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.doctors-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(39, 25, 77, 0.08);
  transition: all 0.25s ease;
  font-size: 14px;
  flex-shrink: 0;
}

.doctors-nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(222, 84, 39, 0.25);
}

.doctors-nav-btn:active {
  transform: scale(0.95);
}

.doctors-pagination {
  position: static;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doctors-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #D4D0E2;
  opacity: 1;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin: 0;
}

.doctors-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--primary-color);
  border-radius: 6px;
}

/* 8. Why Chiraayu Grid & Features */
.why-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 48px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 575px) {
  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 9. Blogs Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 991px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 10. Events & Health Camps Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 991px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.text-primary {
  color: var(--primary-color) !important;
}

/* 11. FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 12. Appointment Grid & Form Grids */
.appointment-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 48px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 991px) {
  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* 14. Footer Grid & Columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 36px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Footer Social Media Icons */
.footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-icon:hover {
  transform: translateY(-4px) scale(1.1);
}

.footer-social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}

.footer-social-icon.instagram:hover {
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  border-color: #DC2743;
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

.footer-social-icon.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}

.footer-social-icon.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.45);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

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

/* 15. Prakruthi Meter Row */
.prakruthi-meter-row {
  display: grid;
  grid-template-columns: 160px 1fr 45px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .prakruthi-meter-row {
    grid-template-columns: 120px 1fr 40px;
    gap: 8px;
  }
}

/* ==========================================================
   GLOBAL BREADCRUMB BAR & NAVIGATION STYLES
   ========================================================== */
.breadcrumb-bar {
  background: var(--primary-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--primary-subtle);
}

.breadcrumb-bar .breadcrumb,
.breadcrumb {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* ==========================================================
   16. SYMPTOMS PAGE STYLES (symptoms.php)
   ========================================================== */
.symptom-breadcrumb {
  background: var(--primary-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--primary-subtle);
}

.symptom-breadcrumb-list {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  font-size: 13px;
}

.symptom-breadcrumb-list a {
  color: var(--text-muted);
}

.symptom-breadcrumb-list .active {
  color: var(--primary-color);
  font-weight: 600;
}

.symptom-hero-section {
  padding-top: 40px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, var(--primary-light) 0%, #FFFFFF 100%);
}

.symptom-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 991px) {
  .symptom-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.symptom-main-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 36px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .symptom-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.symptom-causes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 575px) {
  .symptom-causes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.symptom-treatments-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.symptom-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .symptom-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.symptom-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.symptom-hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.symptom-badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.symptom-ayur-ref {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.symptom-hero-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.symptom-hero-tagline {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 20px;
}

.symptom-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.symptom-btn-book {
  padding: 10px 22px;
  font-size: 14px;
}

.symptom-btn-wa {
  padding: 10px 20px;
  font-size: 14px;
  border-color: #25D366;
  color: #128C7E;
}

.symptom-btn-wa:hover {
  background: #25D366;
  color: #FFFFFF;
}

.symptom-btn-call {
  padding: 10px 18px;
  font-size: 14px;
}

.symptom-guarantee-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(39, 25, 77, 0.06);
  text-align: left;
}

.symptom-guarantee-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.symptom-guarantee-title {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 12px;
}

.symptom-guarantee-list {
  padding-left: 18px;
  margin-bottom: 0;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Horizontal Sticky Selector */
.symptom-selector-nav {
  background: #FFFFFF;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 99;
}

.symptom-selector-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.symptom-selector-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-right: 8px;
}

.symptom-selector-pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
  background: var(--primary-light);
  color: var(--text-dark);
  border: 1px solid var(--primary-subtle);
  transition: all 0.2s ease;
}

.symptom-selector-pill:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}

.symptom-selector-pill.active {
  font-weight: 700;
  background: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(222, 84, 39, 0.3);
  border-color: var(--primary-color);
}

/* Content Cards */
.symptom-card {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(39, 25, 77, 0.04);
  overflow: hidden;
  background: #FFFFFF;
}

.symptom-card-body {
  padding: 28px;
}

.symptom-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.symptom-card-title i {
  color: var(--primary-color);
}

.symptom-overview-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

.symptom-cause-box {
  background: var(--primary-light);
  border: 1px solid var(--primary-subtle);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
}

.symptom-cause-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.symptom-cause-title i {
  color: var(--primary-color);
  font-size: 13px;
}

.symptom-cause-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0;
}

.symptom-treatment-item {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.symptom-treatment-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.symptom-treatment-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Red Flags Card */
.symptom-redflag-card {
  border: 1px solid #FFCDD2;
  background: #FFF5F5;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.04);
  overflow: hidden;
}

.symptom-redflag-title {
  font-size: 18px;
  font-weight: 700;
  color: #C62828;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.symptom-redflag-list {
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 13.5px;
  color: #4E342E;
  line-height: 1.65;
}

.symptom-redflag-list li {
  margin-bottom: 6px;
}

/* Booking Card */
.symptom-booking-card {
  border: 1px solid var(--primary-subtle);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--primary-light) 100%);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(222, 84, 39, 0.08);
  overflow: hidden;
}

.symptom-booking-head {
  text-align: center;
  margin-bottom: 24px;
}

.symptom-booking-badge {
  background: var(--primary-color);
  font-size: 11.5px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.symptom-booking-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 8px;
  margin-bottom: 6px;
}

.symptom-booking-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.symptom-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.symptom-form-control {
  border-radius: 10px;
  font-size: 14px;
  padding: 10px 14px;
}

.symptom-form-readonly {
  background: #F8F9FA;
  font-weight: 600;
  color: var(--primary-color);
}

.symptom-slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.symptom-slot-label {
  font-size: 13px;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  margin-bottom: 0;
}

.symptom-btn-submit {
  background: var(--primary-color);
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(222, 84, 39, 0.3);
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.symptom-btn-submit:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Sidebar Elements */
.symptom-sidebar-card {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(39, 25, 77, 0.04);
  overflow: hidden;
  background: #FFFFFF;
}

.symptom-sidebar-head {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 22px;
}

.symptom-sidebar-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.symptom-sidebar-list {
  max-height: 480px;
  overflow-y: auto;
}

.symptom-sidebar-item {
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}

.symptom-sidebar-item:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}

.symptom-sidebar-item.active {
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.symptom-sidebar-item i {
  font-size: 11px;
  opacity: 0.6;
}

.symptom-caredesk-card {
  background: linear-gradient(145deg, #27194D 0%, #1A1035 55%, #1F143D 100%);
  border: 1px solid rgba(236, 160, 39, 0.28);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(39, 25, 77, 0.18);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.symptom-caredesk-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(222, 84, 39, 0.22) 0%, rgba(236, 160, 39, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.symptom-caredesk-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #F8B84E;
  background: rgba(236, 160, 39, 0.14);
  border: 1px solid rgba(236, 160, 39, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.symptom-caredesk-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 10px;
}

.symptom-caredesk-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 18px;
}

.symptom-btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  color: #27194D;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.symptom-btn-white:hover {
  background: #FEF3EE;
  color: #DE5427;
  border-color: #FEF3EE;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.symptom-btn-wa-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: #25D366;
  border: 1px solid #25D366;
  color: #FFFFFF;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.symptom-btn-wa-solid:hover {
  background: #20BD5A;
  border-color: #20BD5A;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.symptom-timings-box {
  font-size: 12.5px;
  color: var(--text-dark);
  background: var(--primary-light);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.symptom-maps-btn {
  border-radius: 8px;
  font-size: 12.5px;
}

/* Emergency Alert Banner */
.symptom-alert-emergency {
  background: #FFF5F5;
  border: 1px solid #FFCDD2;
  border-left: 5px solid #D32F2F;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #5C1A1A;
  line-height: 1.55;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.05);
}

.symptom-alert-emergency i {
  color: #D32F2F;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hero Feature Highlights */
.symptom-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.symptom-hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(39, 25, 77, 0.03);
}

.symptom-hero-highlights span i {
  color: var(--primary-color);
  font-size: 13px;
}

/* Home Care / First Steps */
.symptom-homecare-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symptom-homecare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
}

.symptom-homecare-list li i {
  color: #2E7D32;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.symptom-homecare-note {
  background: var(--primary-light);
  border: 1px solid var(--primary-subtle);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.symptom-homecare-note i {
  color: var(--primary-color);
  font-size: 15px;
}

/* Video Section */
.symptom-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #000000;
}

.symptom-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.symptom-btn-video {
  padding: 10px 20px;
  font-size: 14px;
  border-color: #CC0000;
  color: #CC0000;
}

.symptom-btn-video:hover {
  background: #CC0000;
  color: #FFFFFF;
}

/* Related Symptoms & Treatments Grid */
.symptom-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.symptom-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: var(--primary-light);
  border: 1px solid var(--primary-subtle);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.symptom-related-link:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(222, 84, 39, 0.25);
}

.symptom-related-link.highlight {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--primary-color);
}

.symptom-related-link.highlight:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}

/* Quick Self-Check Section */
.symptom-selfcheck-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.symptom-selfcheck-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
}

.symptom-selfcheck-list li i {
  color: var(--primary-color);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.symptom-selfcheck-footer {
  background: var(--brand-indigo-light);
  border: 1px solid var(--brand-indigo-subtle);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-indigo);
  display: flex;
  align-items: center;
  gap: 8px;
}

.symptom-selfcheck-footer i {
  color: var(--primary-color);
  font-size: 16px;
}

/* ==========================================================================
   17. ABOUT US PAGE COMPONENTS (about.php)
   ========================================================================== */
.about-hero-section {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(254, 243, 238, 0.4) 60%, var(--background) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.about-hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.about-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--brand-indigo);
  line-height: 1.22;
  margin-bottom: 20px;
}

.about-hero-text {
  font-size: 16.5px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-signature-card {
  background: #FFFFFF;
  border: 1px solid var(--brand-teal-subtle);
  border-left: 5px solid var(--brand-teal);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: 0 4px 16px rgba(45, 139, 121, 0.08);
  margin-bottom: 28px;
}

.about-signature-card p {
  font-size: 15.5px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-signature-card strong {
  color: var(--brand-teal-dark);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.about-btn-book {
  background: var(--primary-color);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(222, 84, 39, 0.3);
}

.about-btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222, 84, 39, 0.4);
}

.about-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.about-btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.about-btn-directions {
  background: #FFFFFF;
  color: var(--brand-indigo) !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.about-btn-directions:hover {
  background: var(--brand-indigo);
  color: #FFFFFF !important;
  border-color: var(--brand-indigo);
  transform: translateY(-2px);
}

/* Quick Condition Links */
.about-quicklinks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-quicklink-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--brand-indigo);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.about-quicklink-pill:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(222, 84, 39, 0.2);
}

/* Common Section Layout */
.about-section {
  padding: 60px 0;
}

.about-section.alt-bg {
  background: var(--brand-indigo-light);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.about-section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section-header {
  margin-bottom: 36px;
}

.about-section-title {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 12px;
}

.about-section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.68;
}

/* Features Grid (Who We Are) */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-subtle);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.about-feature-icon.primary {
  background: var(--primary-light);
  color: var(--primary-color);
}

.about-feature-icon.teal {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.about-feature-icon.indigo {
  background: var(--brand-indigo-light);
  color: var(--brand-indigo);
}

.about-feature-icon.gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
}

.about-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.about-feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Conditions Grid */
.about-conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.about-condition-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.about-condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand-teal);
}

.about-condition-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.about-condition-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.about-condition-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 0;
}

.about-condition-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  padding-left: 36px;
}

/* Care Journey (1, 2, 3, 4 Steps) */
.about-journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.about-journey-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.about-journey-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
}

.about-journey-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-indigo);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(39, 25, 77, 0.2);
}

.about-journey-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.about-journey-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact & Location Grid */
.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 991px) {
  .about-contact-grid {
    grid-template-columns: 1fr;
  }
}

.about-contact-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.about-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.about-contact-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-indigo);
  line-height: 1.5;
  margin-bottom: 0;
}

.about-map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  height: 100%;
  min-height: 340px;
}

.about-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* Emergency Alert */
.about-emergency-alert {
  background: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.25);
  border-left: 4px solid #D32F2F;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #C62828;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

/* Bottom CTA Card Banner */
.about-cta-section {
  padding: 40px 0 60px;
}

.about-cta-card {
  background: linear-gradient(135deg, #27194D 0%, #1A1035 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(39, 25, 77, 0.25);
}

.about-cta-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.about-cta-subtitle {
  font-size: 16px;
  color: #E0DBEC;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.68;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.about-cta-phone {
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.about-cta-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   18. TREATMENTS PAGE COMPONENTS (treatment.php)
   ========================================================================== */
.treatment-hero-section {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(254, 243, 238, 0.4) 60%, var(--background) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.treatment-hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.treatment-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.treatment-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--brand-indigo);
  line-height: 1.22;
  margin-bottom: 18px;
}

.treatment-hero-text {
  font-size: 16.5px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 820px;
}

.treatment-anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.treatment-anchor-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--brand-indigo);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.treatment-anchor-pill:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(222, 84, 39, 0.25);
}

/* Core Treatments Grid */
.treatment-core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.treatment-core-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.treatment-core-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
}

.treatment-core-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.treatment-core-icon.indigo {
  background: var(--brand-indigo-light);
  color: var(--brand-indigo);
}

.treatment-core-icon.primary {
  background: var(--primary-light);
  color: var(--primary-color);
}

.treatment-core-icon.teal {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.treatment-core-icon.gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
}

.treatment-core-title {
  font-size: 18.5px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 12px;
  line-height: 1.35;
}

.treatment-core-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 20px;
  flex-grow: 1;
}

.treatment-core-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.treatment-core-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Pathway Steps Grid */
.treatment-pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.treatment-pathway-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.treatment-pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand-teal);
}

.treatment-pathway-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-indigo);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(39, 25, 77, 0.2);
}

.treatment-pathway-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.treatment-pathway-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Consult Alert Cards (When Should You Consult?) */
.treatment-consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.treatment-consult-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.treatment-consult-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.treatment-consult-card.danger {
  border-left: 4px solid #D32F2F;
}

.treatment-consult-card.warning {
  border-left: 4px solid #ECA027;
}

.treatment-consult-card.primary {
  border-left: 4px solid #27194D;
}

.treatment-consult-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.treatment-consult-card.danger .treatment-consult-icon {
  color: #D32F2F;
}

.treatment-consult-card.warning .treatment-consult-icon {
  color: #ECA027;
}

.treatment-consult-card.primary .treatment-consult-icon {
  color: #27194D;
}

.treatment-consult-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.treatment-consult-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Explore Symptom Pages Grid */
.treatment-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.treatment-symptom-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
}

.treatment-symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.treatment-symptom-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-indigo);
  line-height: 1.45;
}

.treatment-symptom-card:hover .treatment-symptom-title {
  color: var(--primary-dark);
}

.treatment-symptom-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.treatment-symptom-card:hover .treatment-symptom-cta {
  color: var(--primary-dark);
}

/* ============ TREATMENT SINGLE-PAGE COMPONENTS ============ */
.treatment-selector-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  position: sticky;
  top: 75px;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(39, 25, 77, 0.04);
}

.treatment-selector-header {
  margin-bottom: 8px;
}

.treatment-selector-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.treatment-selector-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.treatment-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-indigo-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s ease;
  outline: none;
}

.treatment-nav-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary-subtle);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.treatment-nav-pill.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(222, 84, 39, 0.28);
}

.treatment-nav-pill.active i {
  color: #FFFFFF !important;
}

.treatment-content-pane {
  animation: treatmentFadeIn 0.3s ease;
}

@keyframes treatmentFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.treatment-highlights-box {
  background: var(--brand-teal-light);
  border: 1px solid var(--brand-teal-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.treatment-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
}

.treatment-highlights-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.treatment-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-checklist li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.treatment-checklist li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: var(--primary-color);
}

.treatment-protocols-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.treatment-protocol-item {
  background: var(--brand-indigo-light);
  border: 1px solid var(--brand-indigo-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.treatment-protocol-item:hover {
  border-color: var(--primary-subtle);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.treatment-protocol-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.treatment-protocol-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.pathya-box {
  border-radius: var(--radius-md);
  padding: 16px 18px;
  height: 100%;
}

.pathya-box.pathya-do {
  background: #EFF8F5;
  border: 1px solid #CCEBE3;
}

.pathya-box.pathya-dont {
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
}

.pathya-box-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.pathya-list li {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pathya-list li i {
  font-size: 16px;
  margin-top: 1px;
}

/* ==========================================================================
   19. BLOG & HEALTH LIBRARY COMPONENTS (blog.php)
   ========================================================================== */
.blog-hero-section {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(254, 243, 238, 0.4) 60%, var(--background) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.blog-hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.blog-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--brand-indigo);
  line-height: 1.22;
  margin-bottom: 18px;
}

.blog-hero-text {
  font-size: 16.5px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 860px;
}

.blog-intro-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-left: 5px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.blog-intro-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-intro-card p:last-child {
  margin-bottom: 0;
}

.blog-topics-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--brand-indigo);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

.blog-topic-pill:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(222, 84, 39, 0.25);
}

/* Latest Articles Grid */
.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-subtle);
}

.blog-article-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}

.blog-article-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 14px;
  line-height: 1.35;
}

.blog-article-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-article-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.blog-article-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* Pillar Cards (01, 02, 03, 04) */
.blog-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.blog-pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.blog-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand-teal);
}

.blog-pillar-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-teal);
  opacity: 0.8;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.blog-pillar-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.blog-pillar-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Topic Grid (6 cards) */
.blog-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.blog-topic-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
}

.blog-topic-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.blog-topic-icon.primary {
  background: var(--primary-light);
  color: var(--primary-color);
}

.blog-topic-icon.teal {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.blog-topic-icon.indigo {
  background: var(--brand-indigo-light);
  color: var(--brand-indigo);
}

.blog-topic-icon.gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
}

.blog-topic-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.blog-topic-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Tags Cloud */
.blog-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-tag-badge {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.blog-tag-badge:hover {
  background: var(--brand-indigo);
  color: #FFFFFF;
  border-color: var(--brand-indigo);
  transform: translateY(-2px);
}

/* Medical Disclaimer Card */
.blog-disclaimer-card {
  background: var(--brand-indigo-light);
  border: 1px solid var(--brand-indigo-subtle);
  border-left: 5px solid var(--brand-indigo);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.65;
  margin-top: 36px;
}

.blog-disclaimer-card strong {
  color: var(--brand-indigo);
}

/* ==========================================================================
   20. YOGA THERAPY PAGE COMPONENTS (yoga.php)
   ========================================================================== */
.yoga-hero-section {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--brand-teal-light) 0%, rgba(239, 248, 245, 0.4) 60%, var(--background) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.yoga-hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.yoga-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-teal-subtle);
  color: var(--brand-teal-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.yoga-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--brand-indigo);
  line-height: 1.22;
  margin-bottom: 18px;
}

.yoga-hero-text {
  font-size: 16.5px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 860px;
}

.yoga-highlights-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.yoga-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--brand-teal-subtle);
  color: var(--brand-teal-dark);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* Benefits Grid (3 columns) */
.yoga-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.yoga-benefit-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.yoga-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand-teal);
}

.yoga-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.yoga-benefit-icon.teal {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.yoga-benefit-icon.primary {
  background: var(--primary-light);
  color: var(--primary-color);
}

.yoga-benefit-icon.indigo {
  background: var(--brand-indigo-light);
  color: var(--brand-indigo);
}

.yoga-benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 10px;
}

.yoga-benefit-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 0;
}

/* Program Grid (Includes vs Best For) */
.yoga-program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 768px) {
  .yoga-program-grid {
    grid-template-columns: 1fr;
  }
}

.yoga-program-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.yoga-program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.yoga-program-card.teal-accent {
  border-top: 4px solid var(--brand-teal);
}

.yoga-program-card.primary-accent {
  border-top: 4px solid var(--primary-color);
}

.yoga-program-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.yoga-program-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 0;
}

.yoga-program-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yoga-program-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.6;
}

.yoga-program-list li i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.yoga-program-list.teal li i {
  color: var(--brand-teal);
}

.yoga-program-list.primary li i {
  color: var(--primary-color);
}

/* Safety Grid */
.yoga-safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.yoga-safety-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.yoga-safety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.yoga-safety-card.danger {
  border-left: 4px solid #D32F2F;
}

.yoga-safety-card.warning {
  border-left: 4px solid #ECA027;
}

.yoga-safety-card.success {
  border-left: 4px solid var(--brand-teal);
}

.yoga-safety-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.yoga-safety-card.danger .yoga-safety-icon {
  color: #D32F2F;
}

.yoga-safety-card.warning .yoga-safety-icon {
  color: #ECA027;
}

.yoga-safety-card.success .yoga-safety-icon {
  color: var(--brand-teal);
}

.yoga-safety-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
}

.yoga-safety-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Video Wrapper Card */
.yoga-video-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
}

/* Related Pages Grid (6 cards) */
.yoga-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.yoga-related-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.yoga-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.yoga-related-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 6px;
}

.yoga-related-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.yoga-related-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yoga-related-card:hover .yoga-related-cta {
  color: var(--primary-dark);
}

/* ==========================================================================
   21. SINGLE BLOG POST COMPONENTS (singleblog.php)
   ========================================================================== */
.singleblog-header-section {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, var(--primary-light) 0%, rgba(254, 243, 238, 0.4) 60%, var(--background) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.singleblog-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.singleblog-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.singleblog-title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  color: var(--brand-indigo);
  line-height: 1.25;
  margin-bottom: 18px;
}

.singleblog-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.singleblog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.singleblog-meta-item i {
  color: var(--primary-color);
  font-size: 15px;
}

/* Main 2-Column Layout */
.singleblog-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  padding: 44px 0 60px;
}

@media (max-width: 991px) {
  .singleblog-main-layout {
    grid-template-columns: 1fr;
  }
}

.singleblog-content-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.singleblog-intro-lead {
  font-size: 16.5px;
  color: var(--text-dark);
  line-height: 1.8;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-left: 5px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.singleblog-intro-lead p:last-child {
  margin-bottom: 0;
}

/* Myth vs Fact Comparison Block */
.singleblog-myth-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.singleblog-myth-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-subtle);
}

.singleblog-myth-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.singleblog-myth-box {
  background: rgba(211, 47, 47, 0.06);
  border: 1px solid rgba(211, 47, 47, 0.2);
  border-left: 4px solid #D32F2F;
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.singleblog-myth-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #C62828;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.singleblog-myth-quote {
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  color: #B71C1C;
  margin-bottom: 0;
}

.singleblog-fact-box {
  background: rgba(45, 139, 121, 0.06);
  border: 1px solid rgba(45, 139, 121, 0.2);
  border-left: 4px solid var(--brand-teal);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.singleblog-fact-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.singleblog-fact-text {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.68;
  margin-bottom: 12px;
}

.singleblog-fact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.singleblog-fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.55;
}

.singleblog-fact-list li i {
  color: var(--primary-color);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.singleblog-ayurveda-callout {
  background: var(--brand-indigo-light);
  border: 1px solid var(--brand-indigo-subtle);
  border-left: 4px solid var(--brand-indigo);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.68;
}

.singleblog-ayurveda-callout strong {
  color: var(--brand-indigo);
}

/* Conclusion & Approach Cards */
.singleblog-section-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.singleblog-section-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.singleblog-section-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.singleblog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.singleblog-tag-pill {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.singleblog-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.singleblog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dark);
}

.singleblog-checklist li i {
  color: var(--brand-teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Accordion */
.singleblog-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.singleblog-faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.singleblog-faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-indigo);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.singleblog-faq-q i {
  color: var(--primary-color);
  font-size: 17px;
  margin-top: 1px;
}

.singleblog-faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 0;
  padding-left: 25px;
}

/* Reviewer Box */
.singleblog-reviewer-card {
  background: var(--brand-teal-light);
  border: 1px solid var(--brand-teal-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .singleblog-reviewer-card {
    flex-direction: column;
    text-align: center;
  }
}

.singleblog-reviewer-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--brand-teal);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.singleblog-reviewer-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal-dark);
  margin-bottom: 4px;
}

.singleblog-reviewer-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 4px;
}

.singleblog-reviewer-creds {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Share and Navigation Row */
.singleblog-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.singleblog-share-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.singleblog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.singleblog-share-btn.twitter {
  background: #000000;
  color: #FFFFFF !important;
}

.singleblog-share-btn.facebook {
  background: #1877F2;
  color: #FFFFFF !important;
}

.singleblog-share-btn.whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
}

.singleblog-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Sidebar Components */
.singleblog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.singleblog-sidebar-sticky {
  position: sticky;
  top: 105px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.singleblog-side-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}

.singleblog-side-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-indigo);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.singleblog-toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.singleblog-toc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.singleblog-toc-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.singleblog-side-consult {
  background: linear-gradient(135deg, #27194D 0%, #1A1035 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
}

.singleblog-side-consult h4 {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.singleblog-side-consult p {
  font-size: 13px;
  color: #E0DBEC;
  line-height: 1.55;
  margin-bottom: 18px;
}