/*
Theme Name: Mediversity
Template: astra
Author: Mediversity
Description: Custom child theme for Mediversity Medical Clinic
Version: 2.0.0
Text Domain: mediversity
*/

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  --gold:        #056b3f;
  --gold-dark:   #045632;
  --gold-light:  #f5eed8;
  --navy:        #1a2535;
  --navy-dark:   #111b29;
  --text:        #2c3e50;
  --muted:       #4f5f72;
  --light-bg:    #eef1f5;
  --white:       #ffffff;
  --border:      #e5e9ee;
  --shadow-sm:   0 2px 8px rgba(26,37,53,0.07);
  --shadow-md:   0 8px 24px rgba(26,37,53,0.10);
  --shadow-lg:   0 16px 48px rgba(26,37,53,0.13);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-head:   system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-body:   system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --container:   1200px;
  --header-h:    76px;
  --ease:        0.25s ease;
}

/* ========================================
   RESET / BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (min-width: 1025px) {
  body.mv-home #main-content { overflow-x: hidden; overflow-x: clip; }
}
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button { font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 500; }

/* Bootstrap Icons baseline */
.bi {
  display: inline-block;
  line-height: 1;
  vertical-align: -0.125em;
}

.mv-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */
.mv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.mv-header--scrolled {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.mv-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.mv-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--ease);
}
.mv-logo img {
  display: block;
  width: min(220px, 28vw);
  max-width: 100%;
  height: auto;
}
.mv-logo picture,
.mv-footer-logo picture,
.mv-hero-image picture,
.mv-why-carousel .swiper-slide picture,
.mv-deal-image-wrap picture,
.mv-team-avatar picture,
.mv-result-pair figure picture,
.mv-insurance-tile picture,
.mv-office-card picture {
  display: block;
}
.mv-logo:hover { opacity: 0.92; }

/* Nav */
.mv-nav {
  flex: 1;
  display: flex;
  align-items: center;
}
.mv-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.mv-nav-list > li {
  position: relative;
  display: flex;
  align-items: center;
}
.mv-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.mv-nav-list > li > a:hover { color: var(--gold); background: var(--gold-light); }
.mv-nav-list .bi-chevron-down { font-size: 11px; transition: transform var(--ease); }
.mv-has-dropdown:hover .bi-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.mv-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px 0;
  padding-top: 16px; /* 8px visual gap via transparent top padding */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.mv-has-dropdown:hover .mv-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mv-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--ease), color var(--ease);
}
.mv-dropdown li a:hover { background: var(--gold-light); color: var(--gold-dark); }

/* Header CTA */
.mv-header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mv-btn-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: all var(--ease);
  white-space: nowrap;
}
.mv-btn-phone:hover { background: var(--gold-light); }
.mv-btn-book {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.mv-btn-book:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

/* Hamburger */
.mv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.mv-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mv-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mv-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mv-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mv-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
}
.mv-mobile-overlay.mv-overlay--open { display: block; }

/* ========================================
   HERO
   ======================================== */
.mv-hero {
  margin-top: var(--header-h);
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(circle at 86% 14%, rgba(7,149,89,0.16) 0%, rgba(7,149,89,0) 40%),
    linear-gradient(138deg, #edf2f8 0%, #dfe6f0 57%, #d2dbe8 100%);
  min-height: clamp(680px, calc(100vh - var(--header-h)), 760px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding-bottom: 18px;
}
.mv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(35deg, rgba(255,255,255,0.22) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(-35deg, rgba(17,27,41,0.09) 0 1px, transparent 1px 10px),
    radial-gradient(rgba(17, 27, 41, 0.085) 0.9px, transparent 0.9px),
    radial-gradient(rgba(255, 255, 255, 0.75) 0.7px, transparent 0.7px);
  background-size: auto, auto, 20px 20px, 20px 20px;
  background-position: 0 0, 0 0, 0 0, 9px 9px;
  opacity: 0.62;
  mix-blend-mode: normal;
  pointer-events: none;
}
.mv-hero::after {
  content: '';
  position: absolute;
  top: -90px;
  right: -110px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(7,149,89,0.19) 0%, rgba(7,149,89,0) 70%);
  opacity: 0.52;
  pointer-events: none;
}

.mv-hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 32px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.mv-hero-text { display: flex; flex-direction: column; gap: 20px; }

.mv-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.mv-eyebrow-line {
  flex: 1;
  max-width: 44px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.mv-hero-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.mv-rotating-text {
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  white-space: nowrap;
  min-width: 19ch;
}
.mv-rotating-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform-origin: left center;
  animation: slideInLine 0.8s ease-out 0.2s both;
}
@keyframes slideInLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.mv-hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  letter-spacing: 0.005em;
}
.mv-golden { color: var(--gold); font-weight: 600; }
.mv-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.mv-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(5,107,63,0.38);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.mv-cta-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(5,107,63,0.45);
}
.mv-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--ease);
}
.mv-cta-outline:hover { background: var(--navy); color: var(--white); }

.mv-trust-badges { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 4px; }
.mv-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.01em; }
.mv-badge i { color: var(--gold); font-size: 16px; }

/* Hero Image / Slider */
.mv-hero-slider-wrap {
  position: relative;
}
.mv-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 6;
  max-height: 420px;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
}
.mv-slider-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.mv-slider-slide.mv-slider-active {
  opacity: 1;
}
.mv-hero-image {
  border-radius: 22px;
  overflow: hidden;
  width: 100%; height: 100%;
}
.mv-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.mv-slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.mv-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: all var(--ease);
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.mv-slider-btn:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mv-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.mv-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.mv-slider-dot:hover {
  border-color: var(--white);
}
.mv-slider-dot--active {
  background: var(--gold);
  border-color: var(--gold);
}

.mv-hero-services-wrap {
  position: relative;
  width: 100%;
  padding: 0 32px 12px;
  z-index: 3;
  box-sizing: border-box;
}
.mv-hero-services-wrap::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: calc(80% + 80px);
  background: #ffffff;
  z-index: -1;
  pointer-events: none;
}
.mv-hero-services {
  margin-top: 6px;
  transform: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mv-hero-service-card {
  background: var(--white);
  border: 1px solid #e8ebf0;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(26,37,53,0.09);
  text-align: center;
  padding: 20px 16px 14px;
  overflow: visible;
}
.mv-hero-service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.mv-hero-service-icon {
  width: 56px;
  height: 56px;
  margin: -48px auto 14px;
  border-radius: 50%;
  border: 6px solid #eef2f7;
  background: #dfe8f3;
  color: #68809f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.mv-hero-service-card:nth-child(2) .mv-hero-service-icon {
  background: #f2e8d3;
  color: var(--gold-dark);
}
.mv-hero-service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
.mv-hero-service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 6px;
  line-height: 1.55;
}

.mv-ba {
  margin-top: -24px;
  padding: 54px 0 92px;
  background:
    radial-gradient(circle at 8% 18%, rgba(7,149,89,0.10) 0%, rgba(7,149,89,0) 30%),
    linear-gradient(180deg, #f9fbfd 0%, #f3f6fa 100%);
  position: relative;
  overflow: hidden;
}
.mv-ba::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.45) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.34;
  pointer-events: none;
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.mv-section-header { text-align: center; margin-bottom: 56px; }
.mv-section-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.mv-section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.mv-section-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ========================================
   SERVICES
   ======================================== */
.mv-services { padding: 96px 0; background: var(--white); }
.mv-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mv-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.mv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,151,58,0.3);
}
.mv-service-icon {
  width: 66px; height: 66px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--ease);
}
.mv-service-icon i { font-size: 26px; color: var(--gold); transition: color var(--ease); }
.mv-service-card:hover .mv-service-icon { background: var(--gold); }
.mv-service-card:hover .mv-service-icon i { color: var(--white); }
.mv-service-card h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.mv-service-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }
.mv-learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  transition: gap var(--ease), color var(--ease);
}
.mv-learn-more:hover { gap: 10px; color: var(--gold-dark); }

/* ========================================
  WHY MEDIVERSITY
  ======================================== */
.mv-why {
  margin-top: -16px;
  padding: 66px 0 84px;
  background:
    radial-gradient(circle at 9% 18%, rgba(7,149,89,0.12) 0%, rgba(7,149,89,0.0) 34%),
    radial-gradient(circle at 92% 80%, rgba(26,37,53,0.12) 0%, rgba(26,37,53,0.0) 40%),
    linear-gradient(180deg, #f8fafd 0%, #eff4f9 100%);
  position: relative;
}
.mv-why-head {
  text-align: center;
  margin-bottom: 24px;
}
.mv-why-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--navy);
  margin: 10px 0 0;
  line-height: 1.18;
}
.mv-why-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 26px;
}
.mv-why-visual {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  min-height: 0;
  background: #e9eef4;
  box-shadow: 0 22px 44px rgba(26,37,53,0.16);
  position: relative;
}
.mv-why-visual::after {
  content: none;
  position: absolute;
  inset: 0;
}
.mv-why-visual img {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: unset;
}
.mv-why-content {
  padding: 8px 0;
}
.mv-why-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.mv-why-rail {
  border-left: 2px solid rgba(184,151,58,0.34);
  padding-left: 20px;
  margin: 0 0 26px;
  display: grid;
  gap: 18px;
}
.mv-why-rail li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mv-why-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 14px;
  line-height: 1.8;
}
.mv-why-rail h3 {
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 6px;
}
.mv-why-rail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.mv-btn-outline-dark {
  display: inline-flex; align-items: center;
  padding: 11px 24px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: all var(--ease);
}
.mv-btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.mv-why-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
  border-top: 1px solid rgba(180,193,208,0.55);
  border-bottom: 1px solid rgba(180,193,208,0.55);
  padding: 18px 6px;
}
.mv-why-ribbon span {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
}
.mv-why-ribbon span:not(:last-child)::after {
  content: '•';
  color: var(--gold);
  margin-left: 24px;
}

/* ========================================
   WHY MEDIVERSITY CAROUSEL
   ======================================== */
.mv-why-carousel {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.mv-why-carousel .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.mv-why-carousel .swiper-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9eef4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease;
}
.mv-why-carousel .swiper-slide.mv-why-slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.mv-why-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
.mv-why-carousel .swiper-button-next,
.mv-why-carousel .swiper-button-prev {
  display: none !important;
}
.mv-why-carousel .swiper-pagination {
  display: none !important;
}

/* ========================================
   OUR SERVICES
   ======================================== */
.mv-services-showcase {
  margin-top: -20px;
  padding: 72px 0 86px;
  background: linear-gradient(180deg, #f2fbf6 0%, #eaf7f0 100%);
  position: relative;
  overflow: hidden;
}
.mv-services-showcase .mv-container {
  width: 95vw;
  max-width: 95vw;
  padding-left: 0;
  padding-right: 0;
}
.mv-services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 6% 12%, rgba(7, 149, 89, 0.10) 0%, transparent 34%),
              radial-gradient(circle at 94% 86%, rgba(7, 149, 89, 0.12) 0%, transparent 36%);
  pointer-events: none;
  z-index: 0;
}
.mv-treatments-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.mv-treatments-heading {
  grid-column: 2;
  text-align: center;
}
.mv-treatments-heading .mv-section-label {
  margin-bottom: 8px;
}
.mv-treatments-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  color: #232323;
  text-align: center;
}
.mv-treatments-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  grid-column: 3;
  justify-self: end;
}
.mv-treatments-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1.6px solid var(--gold);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.mv-treatments-arrow:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.mv-treatments-arrow:focus,
.mv-treatments-arrow:focus-visible,
.mv-treatments-arrow:active {
  outline: none;
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 58, 0.25);
}
.mv-treatments-viewport {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mv-treatments-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s ease;
  will-change: transform;
}
.mv-treatment-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}
.mv-treatment-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  overflow: hidden;
}
.mv-treatment-card-link:hover .mv-treatment-media {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}
.mv-treatment-media {
  position: relative;
  border-radius: 22px;
  min-height: 520px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 34px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.mv-treatment-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.40) 70%, rgba(0,0,0,0.60) 100%);
}
.mv-treatment-kind,
.mv-treatment-media h3,
.mv-treatment-btn {
  position: relative;
  z-index: 2;
}
.mv-treatment-kind {
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.mv-treatment-media h3 {
  align-self: flex-start;
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-size: clamp(20px, 1.9vw, 32px);
  font-weight: 500;
  line-height: 1.14;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.24);
}
.mv-treatment-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1.8px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.11);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.10em;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--ease);
  margin-top: auto;
}
.mv-treatment-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: #ffffff;
  color: #ffffff;
}

/* ========================================
   DEALS
   ======================================== */
.mv-deals {
  padding: 92px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(7,149,89,0.25) 0%, rgba(7,149,89,0.02) 34%),
    radial-gradient(circle at 92% 88%, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(140deg, #1c2739 0%, #111a28 100%);
  position: relative;
  overflow: hidden;
}
.mv-deals-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}
.mv-deals-ribbon span {
  position: absolute;
  top: 38px;
  right: -30px;
  width: 160px;
  text-align: center;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 0;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 4px 14px rgba(127,29,29,0.45);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.mv-deals-head {
  text-align: center;
  margin-bottom: 34px;
}
.mv-deals-head .mv-section-label {
  color: #ffe7a5;
}
.mv-deals-head .mv-section-title {
  color: #ffffff;
}
.mv-deals-head .mv-section-sub {
  color: rgba(255,255,255,0.78);
}
.mv-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
/* Dynamic deal counts */
.mv-deals-grid--1 { grid-template-columns: minmax(0, 480px); justify-content: center; }
.mv-deals-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mv-deals-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mv-deals-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.mv-deals-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mv-deal-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(184,151,58,0.22);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 16px 34px rgba(8,12,19,0.22);
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.mv-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(8,12,19,0.3);
}
.mv-deal-featured {
  background: rgba(255,255,255,0.94);
  border-color: rgba(184,151,58,0.22);
}
.mv-deal-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: inherit;
  overflow: hidden;
  background: #e9eef4;
  margin: 0;
}
.mv-deal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mv-deal-card:hover .mv-deal-image-wrap img {
  transform: scale(1.08);
}
.mv-deal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,39,57,0.85) 0%, rgba(17,26,40,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.mv-deal-card:hover .mv-deal-overlay {
  opacity: 1;
}
.mv-deal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(184,151,58,0.16);
  color: #7a5d15;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mv-deal-overlay .mv-deal-badge {
  background: rgba(220, 38, 38, 0.9);
  color: #ffffff;
}
.mv-deal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}
.mv-deal-old {
  font-size: 16px;
  color: #5c6876;
  text-decoration: line-through;
}
.mv-deal-new {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  color: #6b4300;
  line-height: 1;
}
.mv-deal-overlay .mv-deal-price {
  gap: 12px;
}
.mv-deal-overlay .mv-deal-old {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  text-decoration: line-through;
}
.mv-deal-overlay .mv-deal-new {
  font-size: clamp(32px, 4vw, 48px);
  color: #22c55e;
}
.mv-deal-overlay .mv-cta-primary {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  font-size: 13px;
  padding: 10px 20px;
  width: auto;
}
.mv-deal-overlay .mv-cta-primary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}
.mv-deal-overlay .mv-btn-outline-dark {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
  font-size: 13px;
  padding: 10px 20px;
}
.mv-deal-overlay .mv-btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
}

/* ========================================
   OUR SERVICES
   ======================================== */
/* ========================================
   STATS
   ======================================== */
.mv-stats {
  padding: 34px 0 74px;
  background: #fff;
}
.mv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mv-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e9edf3;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
}
.mv-stat-card h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.mv-stat-card p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ========================================
   TEAM
   ======================================== */
.mv-team {
  padding: 82px 0;
  background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
}
.mv-team .mv-section-header {
  margin-bottom: 42px;
}
.mv-team .mv-section-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.mv-team .mv-section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3vw, 44px);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0;
}
.mv-team .mv-section-title span {
  color: var(--gold);
}
.mv-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.mv-team-card {
  background: #f0f8f6;
  border: 1px solid #d4e8e0;
  border-radius: 20px;
  padding: 30px 30px 22px;
  display: grid;
  gap: 18px;
}
.mv-team-top h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 6px;
}
.mv-team-role {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
}
.mv-team-avatar {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mv-team-avatar img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
}
.mv-team-avatar img.mv-team-avatar-dr {
  width: 250px;
  height: 250px;
  object-position: center 22%;
}
.mv-team-bottom {
  border-top: 1px solid #d0e5db;
  padding-top: 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mv-team-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f3138;
}
.mv-team-profile:hover {
  color: var(--gold-dark);
}
.mv-team-social {
  display: flex;
  gap: 8px;
}
.mv-team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7efde;
  color: #a68163;
  font-size: 15px;
  transition: all var(--ease);
}
.mv-team-social a:hover {
  background: var(--gold);
  color: #fff;
}

/* ========================================
   RESULTS
   ======================================== */
.mv-results {
  padding: 84px 0;
  background: var(--white);
}
.mv-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.mv-result-card {
  background: #f9fbfd;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 14px;
}
.mv-result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mv-result-pair figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.mv-result-pair img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.mv-result-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(17,27,41,0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 6px;
}
.mv-result-card > p {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--navy);
  margin-top: 12px;
  text-align: center;
}

/* ========================================
   INSURANCE
   ======================================== */
.mv-insurance {
  padding: 92px 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(7,149,89,0.16) 0%, rgba(7,149,89,0) 38%),
    radial-gradient(circle at 92% 88%, rgba(30,45,66,0.08) 0%, rgba(30,45,66,0) 36%),
    linear-gradient(180deg, #f9fbfe 0%, #eef3f9 100%);
}
.mv-insurance-header {
  margin-bottom: 34px;
}
.mv-insurance-header .mv-section-sub {
  max-width: 840px;
}
.mv-insurance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.mv-insurance-tile {
  margin: 0;
  background: rgba(255,255,255,0.95);
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  min-height: 112px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(24,37,54,0.08);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.mv-insurance-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(184,151,58,0.42);
  box-shadow: 0 16px 28px rgba(24,37,54,0.12);
}
.mv-insurance-tile img {
  width: 100%;
  max-width: 178px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  filter: saturate(1.04);
}
.mv-insurance-tile figcaption {
  display: none;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #1f2d41;
  text-align: center;
  line-height: 1.25;
}
.mv-insurance-tile--text {
  background: #ffffff;
}
.mv-insurance-tile--text figcaption {
  display: block;
}

/* ========================================
   BOOK AN APPOINTMENT
   ======================================== */
.mv-booking {
  padding: 84px 0;
  background: linear-gradient(135deg, #f2fbf6 0%, #fff 60%, #f2fbf6 100%);
}
.mv-booking-widget {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
  background: #fff;
}
.mv-booking-widget .calendly-inline-widget {
  border-radius: 20px;
}

/* ========================================
   FAQ
   ======================================== */
.mv-faq {
  padding: 84px 0;
  background: #fff;
}
.mv-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.mv-faq-item {
  border: 1px solid #e4ebf3;
  border-radius: 12px;
  background: #f9fbfd;
  padding: 0 18px;
}
.mv-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--navy);
  padding: 16px 0;
  position: relative;
  padding-right: 24px;
}
.mv-faq-item summary::-webkit-details-marker {
  display: none;
}
.mv-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 22px;
  line-height: 1;
}
.mv-faq-item[open] summary::after {
  content: '−';
}
.mv-faq-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 0 16px;
}

/* ========================================
   CTA BAND
   ======================================== */
.mv-cta-band {
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 14% 18%, rgba(7,149,89,0.22) 0%, rgba(7,149,89,0.02) 40%),
    linear-gradient(135deg, #1f2d41 0%, #162234 100%);
}
.mv-cta-band-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 20px;
  align-items: center;
}
.mv-cta-band .mv-section-label {
  color: #e8cf8b;
  margin-bottom: 10px;
}
.mv-cta-band h2 {
  font-size: clamp(30px, 3vw, 44px);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 10px;
}
.mv-cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 640px;
}
.mv-cta-band-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mv-cta-band .mv-cta-primary {
  box-shadow: none;
}
.mv-cta-band .mv-cta-outline {
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}
.mv-cta-band .mv-cta-outline:hover {
  background: #fff;
  color: var(--navy);
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.mv-testimonial { padding: 86px 0 90px; background: var(--white); }
.mv-testimonial-inner { text-align: center; max-width: 720px; }
.mv-quote-icon { font-size: 52px; color: var(--gold); line-height: 1; margin-bottom: 20px; }
.mv-quote-text {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 27px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 28px;
}
.mv-stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; margin-bottom: 16px; }
.mv-testimonial-author { font-weight: 700; color: var(--navy); font-size: 16px; margin-bottom: 4px; }
.mv-testimonial-location { color: var(--muted); font-size: 14px; }

/* ========================================
   NEWSLETTER
   ======================================== */
.mv-newsletter { background: var(--gold); padding: 54px 0 60px; }
.mv-newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.mv-newsletter-text h3 { font-family: var(--font-head); font-size: 26px; color: var(--white); margin-bottom: 6px; }
.mv-newsletter-text p { color: rgba(255,255,255,0.85); font-size: 15px; }
.mv-newsletter-form {
  display: flex; border-radius: 50px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  flex: 1; max-width: 460px; min-width: 280px;
}
.mv-newsletter-form input {
  flex: 1; padding: 14px 22px;
  border: none; outline: none;
  font-size: 14px; background: var(--white); color: var(--text);
}
.mv-newsletter-form .screen-reader-text {
  color: #ffffff;
}
.mv-newsletter-form button {
  padding: 14px 26px; background: #0f1a28; color: #ffffff;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--ease); white-space: nowrap;
}
.mv-newsletter-form button:hover { background: #0b1320; }

/* ========================================
   SOCIAL MEDIA WALL
   ======================================== */
.mv-social-wall {
  padding: 82px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(7,149,89,0.14) 0%, rgba(7,149,89,0) 35%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}
.mv-social-wall-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.mv-social-wall-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-radius: 18px;
  border: 1px solid #d8e3ee;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(24,39,58,0.08);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  overflow: hidden;
}
.mv-social-wall-card-head {
  min-height: 70px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
.mv-social-wall-card-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.mv-social-wall-card-head a {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 5px 10px;
}
.mv-social-embed {
  background: #ffffff;
  padding: 10px;
  flex: 1;
  min-height: 0;
}
.mv-social-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
  background: #f5f8fc;
}
.mv-social-embed--tiktok {
  overflow: auto;
}
.mv-social-embed--fb-static {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: linear-gradient(160deg, #e8f0fe 0%, #f0f4ff 100%);
  padding: 32px 24px;
}
.mv-fb-static-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.mv-fb-static-icon {
  font-size: 56px;
  color: #1877f2;
  line-height: 1;
}
.mv-fb-static-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2940;
  margin: 0;
}
.mv-fb-static-msg {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  max-width: 240px;
}
.mv-fb-static-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #0f5ec4;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease;
}
.mv-fb-static-btn:hover { background: #0b4d9f; }
.mv-social-embed-fallback {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 16px;
}
.mv-social-embed-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.mv-social-embed-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
}

.mv-social-wall-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(24,39,58,0.14);
}
.mv-social-wall-card--facebook .mv-social-wall-card-head { background: linear-gradient(135deg, #1f64f2, #1877f2); }
.mv-social-wall-card--tiktok .mv-social-wall-card-head { background: linear-gradient(135deg, #111111, #2a2a2a); }
.mv-social-wall-card--instagram .mv-social-wall-card-head { background: linear-gradient(135deg, #833ab4, #e1306c 45%, #f77737 100%); }
.mv-social-wall-card--youtube .mv-social-wall-card-head { background: linear-gradient(135deg, #c70000, #ff0000); }

.mv-social-wall-card--facebook:hover { border-color: #1877f2; }
.mv-social-wall-card--tiktok:hover { border-color: #111111; }
.mv-social-wall-card--instagram:hover { border-color: #e1306c; }
.mv-social-wall-card--youtube:hover { border-color: #ff0000; }

/* ========================================
   FOOTER
   ======================================== */
.mv-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.mv-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
  align-items: start;
}
.mv-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.mv-footer-logo img {
  display: block;
  width: min(260px, 100%);
  max-width: 100%;
  height: auto;
}
.mv-footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.mv-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.mv-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.95);
  transition: background var(--ease), color var(--ease);
}
.mv-footer-social a:hover { background: var(--gold); color: var(--white); }
.mv-footer-social .bi {
  width: 1em;
  height: 1em;
  border: 0;
  border-radius: 0;
}
.mv-footer-social .bi::before,
.mv-footer-social .bi::after {
  position: static;
  width: auto;
  height: auto;
  border: 0;
  transform: none;
}
.mv-footer-social .bi::after { content: none; }
.mv-footer-col h4 {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 18px; letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.mv-footer-col ul { list-style: none; padding: 0; margin: 0; }
.mv-footer-col ul li { margin-bottom: 10px; }
.mv-footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color var(--ease); }
.mv-footer-col ul a:hover { color: var(--gold); }
.mv-footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.65;
}
.mv-footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.mv-footer-contact a { color: rgba(255,255,255,0.78); }
.mv-footer-contact a:hover { color: var(--gold); }
.mv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.78);
  gap: 16px; flex-wrap: wrap;
}
.mv-footer-bottom-links { display: flex; gap: 20px; }
.mv-footer-bottom a { color: rgba(255,255,255,0.78); }
.mv-footer-bottom a:hover { color: var(--gold); }

/* Front-page contrast hardening for Lighthouse consistency */
body.mv-home .mv-newsletter .mv-newsletter-form button {
  background: #0f1a28 !important;
  color: #ffffff !important;
}

body.mv-home .mv-newsletter .mv-newsletter-form button:hover,
body.mv-home .mv-newsletter .mv-newsletter-form button:focus,
body.mv-home .mv-newsletter .mv-newsletter-form button:focus-visible {
  background: #0b1320 !important;
  color: #ffffff !important;
}

body.mv-home .mv-footer .mv-footer-col ul li a,
body.mv-home .mv-footer .mv-footer-contact a,
body.mv-home .mv-footer .mv-footer-bottom a {
  color: #e8edf5 !important;
}

body.mv-home .mv-footer .mv-footer-col ul li a:hover,
body.mv-home .mv-footer .mv-footer-col ul li a:focus,
body.mv-home .mv-footer .mv-footer-contact a:hover,
body.mv-home .mv-footer .mv-footer-contact a:focus,
body.mv-home .mv-footer .mv-footer-bottom a:hover,
body.mv-home .mv-footer .mv-footer-bottom a:focus {
  color: #ffffff !important;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.mv-floating-btns {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 999; display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.mv-chatbot-nudge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: #1d2b40;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(10,16,24,0.24);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: opacity var(--ease), transform var(--ease);
}
.mv-chatbot-nudge i {
  font-size: 15px;
}
.mv-chatbot-nudge--hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.mv-float-whatsapp, .mv-float-phone {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform var(--ease), box-shadow var(--ease);
}
.mv-float-whatsapp i, .mv-float-phone i {
  display: block;
  line-height: 1;
}
.mv-float-whatsapp:hover, .mv-float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
  color: var(--white);
}
.mv-float-whatsapp { background: #25d366; }
.mv-float-phone { background: var(--gold); }

.mv-chatbot {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  background: rgba(8,12,19,0.26);
}
.mv-chatbot--open {
  display: flex;
}
.mv-chatbot-card {
  width: min(380px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  height: min(80vh, 760px);
  min-height: 620px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #dfe6ee;
  box-shadow: 0 18px 44px rgba(12,19,29,0.25);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
}
.mv-chatbot-head {
  background: linear-gradient(135deg, #1b2739 0%, #111a27 100%);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.mv-chatbot-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 3px;
  font-weight: 700;
}
.mv-chatbot-head h3 {
  font-family: var(--font-head);
  font-size: 21px;
  line-height: 1.25;
  color: #ffffff;
}
.mv-chatbot-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mv-chatbot-body {
  padding: 14px 14px 8px;
  overflow: auto;
  display: grid;
  gap: 11px;
  background: #f7fafc;
}
.mv-chat-msg {
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.mv-chat-msg--bot {
  justify-self: start;
  background: #ffffff;
  border: 1px solid #e1e8f0;
  color: #304255;
  white-space: pre-line;
}
.mv-chat-msg--typing {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}
.mv-chat-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mv-chat-typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7a8da3;
  opacity: 0.35;
  animation: mvChatTypingWave 0.9s ease-in-out infinite;
}
.mv-chat-typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.mv-chat-typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes mvChatTypingWave {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.mv-chat-office-wrap {
  display: grid;
  gap: 10px;
}
.mv-chat-office-intro {
  margin: 0;
  font-weight: 700;
  color: #1f3043;
}
.mv-chat-office-table {
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fbff;
}
.mv-chat-office-table h4 {
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  background: #1d2b40;
}
.mv-chat-office-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.mv-chat-office-table th,
.mv-chat-office-table td {
  padding: 6px 10px;
  text-align: left;
  border-top: 1px solid #e5edf5;
}
.mv-chat-office-table th {
  width: 40%;
  font-weight: 700;
  color: #2f4052;
  background: #f1f6fc;
}
.mv-chat-office-table td {
  color: #223445;
}
.mv-chat-address-wrap {
  display: grid;
  gap: 10px;
}
.mv-chat-address-intro {
  margin: 0;
  font-weight: 700;
  color: #1f3043;
}
.mv-chat-address-card {
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  padding: 10px;
  background: #f8fbff;
  display: grid;
  gap: 8px;
}
.mv-chat-address-card h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #1d2b40;
}
.mv-chat-address-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #2d4155;
}
.mv-chat-address-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: #1d2b40;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.mv-chat-address-card a:hover {
  background: #162336;
  color: #ffffff;
}
.mv-chat-book-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, #1b2a3e 0%, #1d3352 100%);
  border-radius: 12px;
  padding: 14px;
  color: #ffffff;
}
.mv-chat-book-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #e8cf8b;
}
.mv-chat-book-body {
  display: grid;
  gap: 8px;
}
.mv-chat-book-body h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}
.mv-chat-book-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.mv-chat-book-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: #c4a951;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background var(--ease);
}
.mv-chat-book-body a:hover {
  background: #b09240;
  color: #ffffff;
}
/* ---- chatbot deals card ---- */
.mv-chat-deals-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mv-chat-deals-intro {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #1d2b40;
}
.mv-chat-deals-intro .bi {
  color: #c9972b;
  margin-right: 4px;
}
.mv-chat-deals-none {
  margin: 0;
  font-size: 13px;
  color: #5a6a7a;
  line-height: 1.6;
}
.mv-chat-deals-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mv-chat-deal-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(201,151,43,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(8,12,19,0.1);
}
.mv-chat-deal-img {
  width: 80px;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
  align-self: stretch;
}
.mv-chat-deal-body {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mv-chat-deal-badge {
  display: inline-block;
  background: linear-gradient(135deg,#079559,#2bb673);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 2px 7px;
  border-radius: 20px;
  width: fit-content;
}
.mv-chat-deal-name {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #1d2b40;
  line-height: 1.4;
}
.mv-chat-deal-pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.mv-chat-deal-old {
  font-size: 11px;
  color: #8a96a4;
  text-decoration: line-through;
}
.mv-chat-deal-new {
  font-size: 14px;
  font-weight: 800;
  color: #c9972b;
}
.mv-chat-deal-save {
  font-size: 10px;
  font-weight: 700;
  color: #21a353;
  background: #e6f7ed;
  padding: 1px 6px;
  border-radius: 20px;
}
.mv-chat-deal-btn {
  display: inline-block;
  margin-top: 2px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  width: fit-content;
  transition: background .2s;
}
.mv-chat-deal-btn:hover {
  background: #a93226;
  color: #fff;
}
.mv-chat-deals-note {
  margin: 0;
  font-size: 11px;
  color: #8a96a4;
  font-style: italic;
}
/* ---- chatbot help card ---- */
.mv-chat-help-card {
  display: grid;
  gap: 10px;
}
.mv-chat-help-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #1d2b40;
}
.mv-chat-help-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.mv-chat-help-topics li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #304255;
  background: #f1f6fc;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  user-select: none;
}
.mv-chat-help-topics li:hover {
  background: #e4eef9;
  border-color: #c4a951;
  color: #1d2b40;
}
.mv-chat-help-topics li:hover i {
  color: #b09240;
}
.mv-chat-help-topics li i {
  color: #c4a951;
  font-size: 13px;
  flex-shrink: 0;
}
.mv-chat-help-divider {
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  color: #1d2b40;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mv-chat-help-divider::before,
.mv-chat-help-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #c4a951;
  border-radius: 2px;
}
.mv-chat-help-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  background: #25d366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  transition: background var(--ease);
}
.mv-chat-help-wa:hover {
  background: #1faf55;
  color: #ffffff;
}
.mv-chat-msg--user {
  justify-self: end;
  background: #1d2b40;
  color: #ffffff;
}
.mv-chatbot-quick {
  padding: 10px 14px;
  border-top: 1px solid #e5ebf2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #ffffff;
}
.mv-chatbot-chip {
  min-height: 31px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid #d9e3ee;
  background: #f8fbff;
  color: #334557;
  font-size: 11px;
  font-weight: 700;
}
.mv-chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid #e5ebf2;
  background: #ffffff;
}
.mv-chatbot-form input {
  min-width: 0;
  height: 42px;
  border: 1px solid #d5e0eb;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  color: #2f4052;
}
.mv-chatbot-form button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold);
  color: #ffffff;
  font-size: 16px;
}
.mv-chatbot-human {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-top: 1px solid #e5ebf2;
  background: #e9fff1;
  color: #1f8f4d;
  font-weight: 700;
  font-size: 14px;
}
.mv-chatbot-human:hover {
  background: #def9e9;
  color: #17753f;
}

/* ========================================
   OFFICES
   ======================================== */
.mv-offices {
  padding: 88px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(7,149,89,0.14) 0%, rgba(7,149,89,0.0) 34%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fa 100%);
}
.mv-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.mv-office-card {
  background: #ffffff;
  border: 1px solid #e2eaf3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(25,37,55,0.11);
}
.mv-office-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.mv-office-content {
  padding: 20px 20px 22px;
}
.mv-office-content h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}
.mv-office-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.mv-office-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #25425f;
  margin-bottom: 8px;
}
.mv-office-hours {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  background: #f7fafd;
  border: 1px solid #e6edf5;
  border-radius: 12px;
}
.mv-office-hours li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #4f5e6e;
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px dashed #dde5ef;
}
.mv-office-hours li:last-child {
  border-bottom: none;
}
.mv-office-hours li span:first-child {
  min-width: 118px;
  font-weight: 600;
  color: #324558;
}
.mv-office-hours li span:last-child {
  color: #7e5f1b;
  font-weight: 700;
}
.mv-office-contact-list {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  background: #fdfaf3;
  border: 1px solid #eee2c8;
  border-radius: 12px;
}
.mv-office-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #4f5e6e;
  padding: 5px 0;
  border-bottom: 1px dashed #e8dcc0;
}
.mv-office-contact-list li:last-child {
  border-bottom: none;
}
.mv-office-contact-list i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.mv-office-contact-list .bi-whatsapp {
  color: #25d366;
  font-size: 15px;
  filter: drop-shadow(0 0 1px rgba(37, 211, 102, 0.45));
}
.mv-office-contact-list a {
  color: #4f5e6e;
}
.mv-office-contact-list a:hover {
  color: var(--gold-dark);
}
.mv-office-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e9f2;
}
.mv-office-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ========================================
   RESPONSIVE — TABLET ≤ 1024px
   ======================================== */
@media (max-width: 1024px) {
  .mv-logo img { width: min(200px, 24vw); height: auto; }
  .mv-footer-logo img { width: min(230px, 100%); height: auto; }
  .mv-btn-phone { display: none; }
  .mv-hero-services { transform: none; }
  .mv-treatment-card { flex: 0 0 calc((100% - 16px) / 2); }
  .mv-treatment-media { min-height: 500px; }
  .mv-deals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mv-deals-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .mv-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mv-team-grid,
  .mv-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Defer heavy below-the-fold rendering to improve initial paint metrics */
  .mv-services-showcase,
  .mv-deals,
  .mv-stats,
  .mv-team,
  .mv-results,
  .mv-insurance,
  .mv-cta-band,
  .mv-offices,
  .mv-testimonial,
  .mv-booking,
  .mv-faq,
  .mv-social-wall {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
  .mv-cta-band-inner { grid-template-columns: 1fr; }
  .mv-insurance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mv-cta-band-actions { justify-content: flex-start; }
  .mv-why-flow { grid-template-columns: 1fr; gap: 22px; }
  .mv-why-visual { min-height: 0; }
  .mv-offices-grid { grid-template-columns: 1fr; }
  .mv-social-wall-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mv-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
}

/* ========================================
   RESPONSIVE — HERO TABLET ≤ 900px
   ======================================== */
@media (max-width: 900px) {
  .mv-hero {
    min-height: auto;
    padding-bottom: 12px;
  }
  .mv-hero-content {
    grid-template-columns: 1fr;
    padding: 32px 24px 12px;
    gap: 22px;
  }
  .mv-hero-slider {
    aspect-ratio: 16 / 9;
    max-height: 300px;
    min-height: auto;
  }
  .mv-hero-services-wrap {
    padding: 0 24px 10px;
  }
  .mv-hero-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
  }
  .mv-hero-service-card h3 { font-size: 15px; }
  .mv-hero-service-card p { font-size: 13px; }

  .mv-why { margin-top: 0; padding: 58px 0 68px; }
  .mv-why-head { margin-bottom: 20px; }
  .mv-why-head h2 { font-size: clamp(28px, 6vw, 38px); }
  .mv-why-visual { min-height: 0; border-radius: 24px; }
  .mv-why-carousel { aspect-ratio: 16 / 10; }
  .mv-why-ribbon { justify-content: flex-start; gap: 10px 16px; }
  .mv-why-ribbon span { font-size: 13px; }
  .mv-why-ribbon span:not(:last-child)::after { margin-left: 16px; }

  .mv-services-showcase {
    padding: 58px 0 72px;
  }
  .mv-deals { padding: 74px 0; }
  .mv-stats { padding: 26px 0 60px; }
  .mv-team,
  .mv-results,
  .mv-insurance,
  .mv-faq,
  .mv-cta-band { padding: 64px 0; }
  .mv-treatments-head {
    margin-bottom: 24px;
  }
  .mv-treatments-title {
    font-size: clamp(36px, 5.3vw, 48px);
  }
  .mv-treatment-media {
    min-height: 470px;
    padding: 28px 20px 22px;
  }
  .mv-treatment-media h3 {
    font-size: clamp(19px, 3.2vw, 26px);
  }
}

/* ========================================
   RESPONSIVE — MOBILE ≤ 768px
   ======================================== */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  :root { --header-h: 64px; }
  .mv-logo img { width: min(160px, 42vw); max-width: 160px; height: auto; }
  .mv-footer-logo img { width: min(190px, 100%); height: auto; }

  .mv-nav {
    position: fixed;
    top: var(--header-h); left: 0;
    width: 285px;
    height: calc(100vh - var(--header-h));
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 12px 0;
  }
  .mv-nav--open { transform: translateX(0); }
  .mv-nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .mv-nav-list > li { width: 100%; }
  .mv-nav-list > li > a { padding: 14px 24px; border-radius: 0; justify-content: space-between; }
  .mv-dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0;
    background: #f8f9fb; display: none; padding: 0;
    min-width: auto;
  }
  .mv-has-dropdown.mv-dropdown--open .mv-dropdown { display: block; }
  .mv-dropdown li a { padding: 12px 40px; }
  .mv-hamburger { display: flex; }
  .mv-btn-book { font-size: 13px; padding: 8px 16px; }

  .mv-hero-content {
    grid-template-columns: 1fr;
    padding: 32px 20px 16px;
    gap: 20px;
  }
  .mv-hero-text {
    text-align: center;
    align-items: center;
  }
  .mv-eyebrow {
    justify-content: center;
  }
  .mv-hero-slider {
    aspect-ratio: 16 / 9;
    max-height: 240px;
    min-height: auto;
  }
  .mv-hero-slider-wrap .mv-slider-controls { display: none; }
  .mv-hero-btns { flex-direction: column; }
  .mv-cta-primary, .mv-cta-outline { justify-content: center; }
  .mv-trust-badges { gap: 12px; }
  .mv-hero-services-wrap { padding: 0 20px 10px; }
  .mv-hero-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
  }
  .mv-hero-service-card { padding: 16px 10px 12px; }
  .mv-hero-service-card h3 { font-size: 14px; }
  .mv-hero-service-card p { display: none; }
  .mv-hero-service-icon {
    width: 44px; height: 44px;
    margin: -36px auto 10px;
    font-size: 17px;
    border-width: 4px;
  }

  .mv-services { padding: 64px 0; }
  .mv-section-header,
  .mv-deals-head,
  .mv-why-head,
  .mv-cta-band-inner,
  .mv-office-content {
    text-align: center;
  }
  .mv-section-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .mv-service-card { padding: 24px 18px; }
  .mv-offices { padding: 62px 0; }
  .mv-office-photo { height: 200px; }
  .mv-office-content h3 { font-size: 22px; }
  .mv-office-meta { grid-template-columns: 1fr; gap: 10px; }
  .mv-office-hours li span:first-child { min-width: 104px; }
  .mv-office-map-wrap iframe { height: 200px; }
  .mv-chatbot {
    padding: 10px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }
  .mv-chatbot-nudge {
    display: none;
  }
  .mv-chatbot-card {
    width: calc(100vw - 20px);
    width: calc(100dvw - 20px);
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    max-height: 86vh;
    min-height: 0;
    height: auto;
  }
  .mv-chatbot-head h3 { font-size: 19px; }
  .mv-deals-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 4px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mv-deals-grid::-webkit-scrollbar {
    display: none;
  }
  .mv-deal-card {
    flex: 0 0 min(86vw, 340px);
    width: min(86vw, 340px);
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .mv-deal-new { font-size: 34px; }
  .mv-deal-card .mv-cta-primary,
  .mv-deal-card .mv-btn-outline-dark {
    width: 100%;
    justify-content: center;
  }
  .mv-stats-grid,
  .mv-team-grid,
  .mv-results-grid { grid-template-columns: 1fr; }
  .mv-faq-item p,
  .mv-cta-band p { font-size: 15px; }
  .mv-insurance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mv-insurance-tile {
    min-height: 90px;
    padding: 12px 10px;
  }
  .mv-insurance-tile img {
    max-width: 138px;
    max-height: 42px;
  }
  .mv-insurance-tile figcaption {
    font-size: 14px;
  }
  .mv-team-card { padding: 24px 20px 20px; }
  .mv-team-card,
  .mv-team-top,
  .mv-team-bottom {
    text-align: center;
  }
  .mv-team-bottom {
    justify-content: center;
  }
  .mv-team-top h3 { font-size: 22px; }
  .mv-team-role { font-size: 14px; }
  .mv-team-avatar img {
    width: 200px;
    height: 200px;
  }
  .mv-team-avatar img.mv-team-avatar-dr {
    width: 216px;
    height: 216px;
  }
  .mv-team-profile { font-size: 12px; }
  .mv-result-pair img { height: 240px; }
  .mv-faq-item summary { font-size: 16px; }
  .mv-cta-band h2 { font-size: clamp(24px, 8vw, 34px); }
  .mv-cta-band-actions { width: 100%; }
  .mv-cta-band-actions .mv-cta-primary,
  .mv-cta-band-actions .mv-cta-outline {
    width: 100%;
    justify-content: center;
  }

  .mv-why {
    margin-top: 0;
    padding: 52px 0 56px;
  }
  .mv-why-head h2 { font-size: clamp(23px, 7.2vw, 30px); }
  .mv-why-visual { min-height: 0; border-radius: 18px; }
  .mv-why-carousel { aspect-ratio: 16 / 9; }
  .mv-why-intro { font-size: 15px; }
  .mv-why-rail { gap: 14px; padding-left: 14px; margin-bottom: 22px; }
  .mv-why-rail h3 { font-size: 18px; }
  .mv-why-ribbon {
    border-top: 1px solid rgba(180,193,208,0.6);
    border-bottom: none;
    padding: 14px 2px 0;
  }
  .mv-why-ribbon span { width: 100%; }
  .mv-why-ribbon span:not(:last-child)::after { display: none; }

  .mv-services-showcase {
    margin-top: 0;
    padding: 50px 0 58px;
  }
  .mv-treatments-head {
    margin-bottom: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }
  .mv-treatments-heading { grid-column: 1; }
  .mv-treatments-title {
    width: 100%;
    text-align: center;
    font-size: clamp(32px, 10vw, 44px);
  }
  .mv-treatments-nav {
    grid-column: 1;
    justify-self: center;
    justify-content: center;
  }
  .mv-treatments-arrow {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .mv-treatment-card {
    flex: 0 0 100%;
  }
  .mv-treatment-media {
    min-height: 460px;
    border-radius: 18px;
  }
  .mv-treatment-media h3 {
    font-size: clamp(18px, 7vw, 24px);
  }
  .mv-treatment-btn {
    min-width: 148px;
    min-height: 48px;
    font-size: 15px;
  }

  .mv-testimonial { padding: 64px 0; }
  .mv-social-wall { padding: 64px 0; }
  .mv-social-wall-grid { grid-template-columns: 1fr; }
  .mv-social-wall-card {
    min-height: 0;
  }

  .mv-newsletter-inner { flex-direction: column; text-align: center; }
  .mv-newsletter-form { min-width: 260px; width: 100%; }

  .mv-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .mv-treatment-media { min-height: 420px; }
  .mv-treatment-btn {
    min-width: 140px;
    min-height: 44px;
    font-size: 14px;
  }
  .mv-ba-cards { flex-direction: column; }
  .mv-ba-card { min-width: auto; }
}

/* ================================================
   SERVICE DETAIL PAGE  (template-service.php)
   ================================================ */

/* ═══════════════════════════════════════════════════════════

/* Front-page contrast hardening */
body.mv-home .mv-newsletter .mv-newsletter-form button {
  background: #0f1a28 !important;
  color: #ffffff !important;
}
body.mv-home .mv-newsletter .mv-newsletter-form button:hover,
body.mv-home .mv-newsletter .mv-newsletter-form button:focus,
body.mv-home .mv-newsletter .mv-newsletter-form button:focus-visible {
  background: #0b1320 !important;
  color: #ffffff !important;
}
body.mv-home .mv-footer .mv-footer-col ul li a,
body.mv-home .mv-footer .mv-footer-contact a,
body.mv-home .mv-footer .mv-footer-bottom-links a,
body.mv-home .mv-footer .mv-footer-bottom a {
  color: #eef3fb !important;
}
body.mv-home .mv-footer .mv-footer-col ul li a:hover,
body.mv-home .mv-footer .mv-footer-contact a:hover,
body.mv-home .mv-footer .mv-footer-bottom-links a:hover,
body.mv-home .mv-footer .mv-footer-bottom a:hover,
body.mv-home .mv-footer .mv-footer-col ul li a:focus,
body.mv-home .mv-footer .mv-footer-contact a:focus,
body.mv-home .mv-footer .mv-footer-bottom-links a:focus,
body.mv-home .mv-footer .mv-footer-bottom a:focus {
  color: #ffffff !important;
}
