/* ================================================================
   SANKET AYURVEDIC CLINIC — style.css (Multi-Page Version)
   Shared styles across all pages
   ================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- CSS VARIABLES ---- */
:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --green-mist: #f1f8f1;
  --accent: #ffc107;
  --accent-dark: #f9a825;
  --bg-light: #f8faf8;
  --text: #333333;
  --text-muted: #666666;
  --border: #e0e8e0;
  --shadow-sm: 0 2px 8px rgba(46, 125, 50, 0.08);
  --shadow-md: 0 8px 30px rgba(46, 125, 50, 0.12);
  --shadow-lg: 0 20px 60px rgba(46, 125, 50, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --whatsapp: #25d366;
  --header-h: 72px;
}

/* ---- BASE ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3a1c;
}
em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
a {
  text-decoration: none;
  color: var(--green);
  transition: color var(--transition);
}
a:hover {
  color: var(--green-dark);
}
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
address {
  font-style: normal;
}
ul {
  list-style: none;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad {
  padding: 80px 0;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #1a3a1c;
  margin-bottom: 16px;
}
.section-title em {
  color: var(--green);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(46, 125, 50, 0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: #1a3a1c;
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #1a3a1c;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  height: var(--header-h);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3a1c;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo:hover {
  color: var(--green);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text em {
  color: var(--green);
  font-family: "Playfair Display", serif;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-link {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}
.nav-link i {
  font-size: 0.7rem;
}

/* Dropdown */
.nav-item {
  position: relative;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}
.nav-item:hover .dropdown {
  display: block;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown-link:hover {
  background: var(--green-pale);
  color: var(--green);
}
.dropdown-link i {
  width: 20px;
  color: var(--green);
  font-size: 0.9rem;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--green-pale);
  border-radius: 30px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--green);
  transition: all var(--transition);
  font-family: "Poppins", sans-serif;
}
.lang-btn.active {
  background: var(--green);
  color: #fff;
}

.nav-cta {
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   PAGE HERO (reusable for inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #f1f8f1 0%, #e8f5e9 60%, #f8fdf8 100%);
  padding: calc(var(--header-h) + 50px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(46, 125, 50, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(76, 175, 80, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #1a3a1c;
  margin-bottom: 16px;
}
.page-hero h1 em {
  color: var(--green);
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.page-hero-wave svg {
  width: 100%;
  height: 50px;
}

/* ============================================================
   TREATMENT CARDS
   ============================================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.treatment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color, var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.treatment-card:hover::before {
  transform: scaleX(1);
}
.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--card-color, var(--green)) 12%, white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--card-color, var(--green));
  margin-bottom: 18px;
  transition: all var(--transition);
}
.treatment-card:hover .card-icon-wrap {
  background: var(--card-color, var(--green));
  color: #fff;
}
.treatment-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #1a3a1c;
}
.treatment-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-tags li {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto 40px;
  min-height: 280px;
}
.testimonial-card {
  display: none;
  animation: fadeSlide 0.5s ease;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.testimonial-card.active {
  display: block;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--green-pale);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  z-index: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: #1a3a1c;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  background: #fff;
  border-radius: 50%;
  color: var(--green);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--green);
  color: #fff;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3a1c;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover {
  background: var(--green-pale);
}
.faq-item.open .faq-question {
  background: var(--green-pale);
  color: var(--green-dark);
}
.faq-question i {
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer[hidden] {
  display: block !important;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #1a3a1c;
}
.form-group label span[aria-hidden] {
  color: #e53935;
}
.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  background: #fff;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #e53935;
}
.field-error {
  font-size: 0.75rem;
  color: #e53935;
  font-weight: 500;
  min-height: 16px;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  transition: all var(--transition);
  user-select: none;
}
.radio-label input[type="radio"] {
  accent-color: var(--green);
}
.radio-label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green-dark);
}
.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note i {
  color: var(--green);
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 16px;
  animation: popIn 0.5s cubic-bezier(0.17, 0.67, 0.35, 1.2);
}
@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.form-success h3 {
  font-size: 1.5rem;
  color: #1a3a1c;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f2e10;
}
.footer-top {
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}
.logo-light .logo-text {
  color: #fff;
}
.logo-light .logo-text em {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--green);
  color: #fff;
}
.footer-links-col h4,
.footer-contact-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--green-light);
}
.footer-links-col ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links-col a:hover {
  color: var(--accent);
}
.footer-contact-col ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact-col li i {
  color: var(--green-light);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-col a,
.footer-contact-col address,
.footer-contact-col span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-contact-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}
.developer-credit {
  color: rgba(255, 255, 255, 0.5) !important;
}
.developer-credit strong {
  color: var(--accent);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  color: #fff;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-8px);
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #333;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  transition: transform 0.3s ease;
}
.mbb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.mbb-btn i {
  font-size: 1.2rem;
}
.mbb-call {
  color: var(--green);
  background: var(--green-pale);
}
.mbb-whatsapp {
  color: var(--whatsapp);
  background: #e8fdf0;
}
.mbb-appt {
  color: #fff;
  background: var(--green);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 60px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-content h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.4);
}

/* ============================================================
   LIVE CHAT WIDGET OVERRIDE
   ============================================================ */
#tawkchat-minified-box {
  bottom: 80px !important;
}

/* ============================================================
   SACRED DIVIDER
   ============================================================ */
.sacred-divider {
  background: #f8faf8;
  padding: 18px 0;
}
.sacred-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sacred-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sacred-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sacred-thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--green-pale);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  color: #fff;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 6px;
}

.treatment-icon-box img {
  width: 100px;
  height: 150px;
  object-fit: contain;
}

.treatment-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.card-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
} 

/* Base style (same design for both) */
.lang-switcher,
.mobile-lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--green-pale);
  border-radius: 30px;
  padding: 3px;
}

/* Buttons */
.lang-switcher .lang-btn,
.mobile-lang-switcher .lang-btn {
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--green);
  transition: all var(--transition);
  font-family: "Poppins", sans-serif;
}

.lang-btn.active {
  background: var(--green);
  color: #fff;
}

/* Desktop visible */
.lang-switcher {
  display: flex;
}

/* Mobile hidden by default */
.mobile-lang-switcher {
  display: none;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .lang-switcher {
    display: none;
  }

  .mobile-lang-switcher {
    display: flex;
    width: 100%;
    margin-top: 8px;
  }
}
