/* Google Fonts (Roboto) is enqueued via WordPress wp_enqueue_style in functions.php */

:root {
  --bvp-primary: #1a5a8f;
  --bvp-primary-dark: #154873;
  --bvp-secondary: #ff9933;
  --bvp-background: #f5f5f5;
  --bvp-foreground: #333333;
  --bvp-muted: rgba(51, 51, 51, 0.72);
  --bvp-white: #ffffff;
  --bvp-border: rgba(26, 90, 143, 0.14);
  --bvp-max: 120rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  background: var(--bvp-background);
  color: var(--bvp-foreground);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bvp-white);
  color: var(--bvp-foreground);
  font-family: Roboto, Arial, sans-serif;
}

body.admin-bar .bvp-header { top: 32px; }

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

a {
  color: inherit;
}

.bvp-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--bvp-primary);
  color: #fff;
  padding: 10px 14px;
}

.bvp-skip-link:focus {
  transform: translateY(0);
}

.bvp-container,
.bvp-footer-inner,
.bvp-page-content,
.bvp-builder {
  width: min(var(--bvp-max), calc(100% - 3rem));
  margin-right: auto;
  margin-left: auto;
}

/* ─── Header ──────────────────────────────────────────────────────── */
.bvp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.06);
}

.bvp-header-inner {
  display: flex;
  align-items: center;
  width: min(var(--bvp-max), calc(100% - 4rem));
  min-height: 80px;
  margin: 0 auto;
  gap: 0;
}

/* Logo */
.bvp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 2.5rem;
}

.bvp-logo-img,
.bvp-brand .custom-logo {
  height: 52px;
  width: auto;
  display: block;
}

.bvp-brand-name {
  color: var(--bvp-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Centre nav */
.bvp-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Right group: phone + book */
.bvp-header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  margin-left: 2.5rem;
}

.bvp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--bvp-primary);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.bvp-header-phone:hover { color: var(--bvp-secondary); }

.bvp-phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--bvp-primary);
}

.bvp-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  background: var(--bvp-secondary);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.bvp-book-btn:hover {
  background: #f28c1c;
  color: #000;
  transform: translateY(-1px);
}

/* Hamburger (hidden on desktop) */
.bvp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  margin-left: auto;
}

.bvp-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bvp-foreground);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 180ms ease;
}

.bvp-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bvp-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bvp-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Navigation menu ─────────────────────────────────────────────── */
.bvp-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.bvp-menu li {
  position: relative;
}

.bvp-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 76px;
  padding: 0 0.9rem;
  color: var(--bvp-foreground);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.bvp-menu > li > a:hover,
.bvp-menu .current-menu-item > a,
.bvp-menu .current_page_item > a,
.bvp-menu .current-menu-ancestor > a {
  color: var(--bvp-primary);
}

/* Dropdown arrow indicator */
.bvp-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.25rem;
  opacity: 0.6;
}

.bvp-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 13rem;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  background: #fff;
  border-top: 3px solid var(--bvp-secondary);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 100;
}

/* Invisible bridge covers the gap so mouse doesn't escape hover area */
.bvp-menu .sub-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.bvp-menu li:hover > .sub-menu,
.bvp-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bvp-menu .sub-menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--bvp-foreground);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}

.bvp-menu .sub-menu a:hover {
  color: var(--bvp-primary);
  background: rgba(26, 90, 143, 0.05);
}

.bvp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 2rem;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bvp-button:hover {
  transform: translateY(-2px);
}

.bvp-button-primary {
  background: var(--bvp-primary);
  color: #fff;
}

.bvp-button-primary:hover {
  background: var(--bvp-primary-dark);
  color: #fff;
}

.bvp-button-secondary {
  background: var(--bvp-secondary);
  color: #000;
}

.bvp-button-secondary:hover {
  background: #f28c1c;
  color: #000;
}

.bvp-button-outline {
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #fff;
}

.bvp-button-outline:hover {
  background: #fff;
  color: var(--bvp-primary);
}

.bvp-main {
  overflow-x: clip;
}

.bvp-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 760px;
  overflow: hidden;
  background: var(--bvp-primary);
}

.bvp-hero-banner-image,
.bvp-page-banner img,
.bvp-appointment-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bvp-hero-gradient,
.bvp-page-banner-overlay,
.bvp-appointment-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bvp-hero-gradient-side {
  background:
    linear-gradient(90deg, rgba(26, 90, 143, 0.88) 0%, rgba(26, 90, 143, 0.66) 34%, rgba(26, 90, 143, 0.28) 67%, rgba(26, 90, 143, 0.12) 100%),
    linear-gradient(0deg, rgba(26, 90, 143, 0.1), rgba(26, 90, 143, 0.1));
}

.bvp-hero-gradient-bottom {
  background: linear-gradient(0deg, rgba(245, 248, 251, 0.9) 0%, rgba(245, 248, 251, 0.58) 15%, rgba(245, 248, 251, 0) 42%);
  opacity: 1;
}

.bvp-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.bvp-hero-copy {
  max-width: 48rem;
  padding-top: 2.5rem;
}

.bvp-hero-copy h1 {
  margin: 0 0 2.2rem;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(4rem, 5.15vw, 6.05rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.bvp-hero-copy h1 span,
.bvp-intro h2 span,
.bvp-eyebrow {
  color: var(--bvp-secondary);
}

.bvp-hero-copy p {
  max-width: 43rem;
  margin: 0 0 3.05rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.25rem, 1.38vw, 1.5rem);
  font-weight: 700;
  line-height: 2;
}

.bvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.bvp-hero-copy .bvp-button {
  min-width: 13.9rem;
  min-height: 4rem;
  padding: 0 2.35rem;
  font-size: 1rem;
  box-shadow: none;
}

.bvp-hero-copy .bvp-button-secondary {
  background: var(--bvp-secondary);
  color: #000;
}

.bvp-hero-copy .bvp-button-secondary:hover {
  background: #f28c1c;
}

.bvp-hero-copy .bvp-button-outline {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.bvp-hero-copy .bvp-button-outline:hover {
  background: #fff;
  color: var(--bvp-primary);
}

.bvp-actions-center {
  justify-content: center;
}

.bvp-scroll-cue {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.bvp-scroll-cue span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bvp-scroll-cue i {
  display: block;
  width: 1px;
  height: 4rem;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
}

.bvp-section {
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.bvp-section--sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.bvp-intro {
  width: 100%;
  background: var(--bvp-background);
}

.bvp-intro-grid {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.bvp-intro-sticky {
  position: sticky;
  top: 8rem;
  width: 33.333%;
  flex: 0 0 33.333%;
}

.bvp-intro-sticky p {
  margin: 0 0 2rem;
  color: rgba(51, 51, 51, 0.82);
  font-size: 1.125rem;
  line-height: 1.75;
}

.bvp-intro h2,
.bvp-section h2,
.bvp-page-banner h1,
.bvp-appointment-banner h2 {
  margin: 0;
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.08;
}

.bvp-intro h2 {
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
}

.bvp-rule {
  width: 5rem;
  height: 4px;
  margin: 1.5rem 0 2rem;
  background: var(--bvp-secondary);
}

.bvp-hero-stats {
  display: flex;
  gap: 2rem;
}

.bvp-hero-stats span {
  display: flex;
  flex-direction: column;
  color: rgba(51, 51, 51, 0.62);
  font-size: 0.875rem;
}

.bvp-hero-stats strong {
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.875rem;
}

.bvp-intro-body {
  width: 66.666%;
  flex: 1 1 auto;
}

.bvp-feature-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}

.bvp-feature-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.bvp-feature-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(26, 90, 143, 0.92), rgba(26, 90, 143, 0));
  color: #fff;
}

.bvp-feature-image strong,
.bvp-feature-image span {
  display: block;
}

.bvp-feature-image strong {
  margin-bottom: 0.5rem;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.5rem;
}

.bvp-feature-grid,
.bvp-treatment-grid,
.bvp-check-grid,
.bvp-testimonial-grid,
.bvp-builder-card-grid {
  display: grid;
  gap: 2rem;
}

.bvp-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bvp-check-grid,
.bvp-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bvp-treatment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bvp-feature-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bvp-feature-card {
  min-height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.5rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: border-color 180ms ease, transform 180ms ease;
}

.bvp-feature-card:hover {
  border-color: rgba(255, 153, 51, 0.35);
  transform: translateY(-4px);
}

.bvp-feature-icon,
.bvp-why-icon,
.bvp-why-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 153, 51, 0.12);
  color: var(--bvp-secondary);
  font-size: 1.25rem;
}

.bvp-feature-icon svg,
.bvp-why-icon svg,
.bvp-why-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
}

.bvp-why-icon-img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  display: block;
}

.bvp-feature-card h3,
.bvp-treatment-grid h3,
.bvp-contact-strip h2,
.bvp-footer h2,
.bvp-builder-card h3 {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.bvp-feature-card p,
.bvp-treatment-grid p,
.bvp-check-grid article p,
.bvp-testimonial-grid blockquote,
.bvp-contact-strip p,
.bvp-contact-strip li,
.bvp-footer p,
.bvp-footer li,
.bvp-section-heading p {
  color: var(--bvp-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.bvp-blue {
  width: 100%;
  max-width: none;
  background: var(--bvp-primary);
  color: #fff;
}

.bvp-blue .bvp-section-heading h2,
.bvp-blue .bvp-section-heading p,
.bvp-blue .bvp-treatment-grid h3,
.bvp-blue .bvp-treatment-grid p {
  color: #fff;
}

.bvp-section-heading {
  max-width: 52rem;
  margin-bottom: 3rem;
}

.bvp-section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.bvp-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bvp-section h2 {
  font-size: clamp(2.5rem, 4.7vw, 4rem);
}

.bvp-treatment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bvp-treatment-grid article {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.bvp-treatment-grid article:hover {
  border-color: rgba(255, 153, 51, 0.52);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.bvp-section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
}

/* ─── Service image cards (homepage) ────────────────────────────────── */
.bvp-services-home { padding-bottom: 5rem; }

.bvp-services-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.bvp-svc-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.bvp-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(255, 153, 51, 0.35);
}

.bvp-svc-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.bvp-svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

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

.bvp-svc-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.3;
}

.bvp-svc-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bvp-svc-card-body h3 {
  margin: 0 0 0.6rem;
  color: var(--bvp-primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.bvp-svc-card-body p {
  margin: 0 0 1.25rem;
  color: var(--bvp-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}

.bvp-svc-card-cta {
  display: inline-block;
  color: var(--bvp-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bvp-services-page-cards {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.bvp-services-page-cards .bvp-services-grid-home {
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bvp-services-page-cards .bvp-svc-card {
  border-radius: 0.5rem;
}

.bvp-services-page-cards .bvp-svc-card-img {
  aspect-ratio: 16 / 9;
}

.bvp-services-page-cards .bvp-svc-card-body {
  padding: 1.25rem;
}

.bvp-services-page-cards .bvp-svc-card-body h3 {
  font-size: 1rem;
}

.bvp-services-page-cards .bvp-svc-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Services page grid responsive overrides */
@media (max-width: 900px) {
  .bvp-services-page-cards .bvp-services-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .bvp-services-page-cards .bvp-services-grid-home {
    grid-template-columns: 1fr;
  }
}

/* Feature cards use the existing .bvp-feature-card styles */

/* ─── Why Choose Us ─────────────────────────────────────────────────── */
.bvp-why-section {
  background: var(--bvp-background);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.bvp-why-section .bvp-section-heading {
  max-width: 48rem;
  margin-bottom: 5.5rem;
}

.bvp-why-section .bvp-eyebrow {
  margin-bottom: 1.5rem;
  color: var(--bvp-primary);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.bvp-why-section .bvp-section-heading h2 {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(51, 51, 51, 0.62);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
}

.bvp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4.5rem;
}

.bvp-why-item {
  text-align: center;
  padding: 0;
}

.bvp-why-icon-wrap {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 51, 0.1);
  color: var(--bvp-secondary);
}

.bvp-why-icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
}

.bvp-why-item h3 {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.bvp-why-item p {
  margin: 0;
  color: rgba(51, 51, 51, 0.58);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ─── Testimonials ──────────────────────────────────────────────────── */
.bvp-testimonials-section {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden; /* contains the wide cloned-card grid so it never causes page-level horizontal scroll */
}

.bvp-testimonials-box {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 4.5rem 2.5rem;
  border: 0;
}

.bvp-testimonials-header {
  margin-bottom: 3.25rem;
  text-align: center;
}

.bvp-testimonials-header h2 {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.1;
}

.bvp-google-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0;
}

.bvp-stars {
  display: inline-flex;
  gap: 1px;
}

.bvp-star {
  color: var(--bvp-secondary);
  font-size: 1.35rem;
  line-height: 1;
}

.bvp-stars .bvp-star:nth-child(5),
.bvp-star-muted {
  color: #cfd4da;
}

.bvp-rating-text {
  color: var(--bvp-foreground);
  font-size: 1rem;
}

.bvp-google-link {
  display: block;
  flex-basis: 100%;
  color: var(--bvp-primary);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.4rem;
  text-align: center;
  text-decoration: none;
  transition: color 150ms ease;
}

.bvp-google-link:hover { color: var(--bvp-secondary); }

.bvp-testimonial-slider {
  position: relative;
  padding: 0 3rem;
}

.bvp-testimonial-grid {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  pointer-events: none; /* arrows control scrolling; direct drag would break the infinite loop reset */
}

.bvp-testimonial-grid::-webkit-scrollbar { display: none; }

.bvp-review-card {
  flex: 0 0 min(28rem, calc(100vw - 4rem));
  margin: 0;
  border-radius: 0.5rem;
  background: #f8f8f8;
  border: 0;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  scroll-snap-align: start;
  pointer-events: auto;
}

.bvp-testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--bvp-primary);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.bvp-testimonial-arrow:hover {
  background: var(--bvp-primary-dark);
  transform: translateY(-50%) scale(1.05);
}

.bvp-testimonial-arrow-prev { left: 0; }
.bvp-testimonial-arrow-next { right: 0; }

.bvp-review-stars {
  color: var(--bvp-secondary);
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.bvp-review-card p {
  margin: 0 0 1.25rem;
  color: var(--bvp-foreground);
  font-size: 0.95rem;
  line-height: 1.45;
}

.bvp-review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.bvp-review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--bvp-primary);
  font-size: 1rem;
}

.bvp-review-source,
.bvp-review-date {
  color: var(--bvp-muted);
  font-size: 0.8125rem;
}

/* ─── Get In Touch section ──────────────────────────────────────────── */
.bvp-get-in-touch { background: var(--bvp-background); }

.bvp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.bvp-contact-info h3,
.bvp-contact-form-wrap h3 {
  margin: 0 0 1.5rem;
  color: var(--bvp-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Address + Phone side-by-side row */
.bvp-contact-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  margin-bottom: 0;
}

.bvp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bvp-border);
}

.bvp-contact-top-row .bvp-contact-item {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* single separator below the top row */
.bvp-contact-top-row + .bvp-contact-divider {
  display: none;
  border: none;
  margin: 0;
}

.bvp-contact-item svg {
  color: var(--bvp-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.bvp-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bvp-contact-item strong {
  color: var(--bvp-foreground);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bvp-contact-item span,
.bvp-contact-item a {
  color: var(--bvp-muted);
  font-size: 0.9375rem;
  text-decoration: none;
}

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

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

.bvp-hours-list li {
  color: var(--bvp-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  white-space: nowrap;
}

.bvp-contact-book-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  text-align: center;
}

.bvp-contact-book-box p {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-weight: 700;
  font-size: 1rem;
}

.bvp-btn-full { width: 100%; }

/* Contact form */
.bvp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bvp-form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bvp-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bvp-form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bvp-foreground);
}

.bvp-form-field input,
.bvp-form-field textarea {
  width: 100%;
  border: 1px solid var(--bvp-border);
  border-radius: 0.4rem;
  padding: 0.75rem 1rem;
  font-family: Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  color: var(--bvp-foreground);
  background: #fff;
  transition: border-color 150ms ease;
  outline: none;
}

.bvp-form-field input:focus,
.bvp-form-field textarea:focus {
  border-color: var(--bvp-primary);
  box-shadow: 0 0 0 3px rgba(26,90,143,0.1);
}

.bvp-form-field textarea { resize: vertical; }

.bvp-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 3.25rem;
  border-radius: 999px;
  background: var(--bvp-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: Roboto, Arial, sans-serif;
  width: 100%;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.bvp-form button[type="submit"]:hover {
  background: var(--bvp-primary-dark);
  transform: translateY(-2px);
}

/* Google Maps */
.bvp-map-wrap {
  margin-top: 2rem;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.bvp-map-wrap iframe { display: block; }

/* ─── Footer brand with logo ─────────────────────────────────────────── */
.bvp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.bvp-footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.bvp-footer-brand span {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.bvp-footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.4rem 0 !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.875rem !important;
}

.bvp-footer-address a {
  color: rgba(255,255,255,0.7);
}

.bvp-footer-address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* duplicate removed — testimonials already defined above */
.bvp-testimonial-grid cite {
  display: block;
  margin-top: 1.25rem;
  color: var(--bvp-primary);
  font-style: normal;
  font-weight: 700;
}

.bvp-appointment-banner {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

.bvp-appointment-overlay {
  background: rgba(26, 90, 143, 0.9);
}

.bvp-appointment-banner .bvp-container {
  position: relative;
  z-index: 2;
}

.bvp-appointment-banner h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
}

.bvp-appointment-banner p {
  max-width: 42rem;
  margin: 2rem auto 3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  line-height: 1.6;
}

.bvp-contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 5rem;
}

.bvp-contact-strip > div {
  border-radius: 0.75rem;
  background: var(--bvp-background);
  padding: 2rem;
}

.bvp-contact-strip ul,
.bvp-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bvp-page-main {
  padding-bottom: 0;
  background: var(--bvp-background);
}

.bvp-page-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30vh;
  min-height: 280px;
  overflow: hidden;
  text-align: center;
}

.bvp-page-banner-overlay {
  background: rgba(26, 90, 143, 0.6);
}

.bvp-page-banner-content {
  position: relative;
  z-index: 2;
  width: min(64rem, calc(100% - 3rem));
  margin: 0 auto;
  color: #fff;
}

.bvp-page-banner h1 {
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 3.75rem);
}

.bvp-page-banner p {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: #fff;
  font-size: 1.25rem;
}

.bvp-page-content,
.bvp-builder {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bvp-page-content {
  max-width: 64rem;
}

.bvp-page-content > h1:first-child {
  display: none;
}

.bvp-page-content h2,
.bvp-builder-copy h2,
.bvp-builder-section .bvp-section-heading h2 {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.bvp-page-content h3 {
  margin: 2rem 0 0.75rem;
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.5rem;
}

.bvp-page-content p,
.bvp-page-content li,
.bvp-rich-text p,
.bvp-rich-text li {
  color: var(--bvp-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.bvp-builder {
  display: grid;
  gap: 4rem;
}

.bvp-builder-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.bvp-builder-split-reverse .bvp-builder-copy {
  order: 2;
}

.bvp-builder-image {
  overflow: hidden;
  margin: 0;
  border-radius: 0.5rem;
}

.bvp-builder-image img,
.bvp-builder-card img {
  width: 100%;
  object-fit: cover;
}

.bvp-builder-image img {
  aspect-ratio: 4 / 3;
}

.bvp-builder-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bvp-builder-card {
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.bvp-builder-card img {
  aspect-ratio: 16 / 10;
}

.bvp-builder-card h3,
.bvp-builder-card p {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.bvp-builder-card h3 {
  margin-top: 1.5rem;
}

.bvp-builder-card p {
  margin-bottom: 1.5rem;
}

.bvp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 0.75rem;
  background: #fff;
  padding: 2.5rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.bvp-cta h2 {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
}

.bvp-cta p:last-child {
  margin-bottom: 0;
}

.bvp-cta .bvp-button-primary {
  flex: 0 0 auto;
}

.bvp-builder-blue {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 5rem max(1.5rem, calc((100vw - var(--bvp-max)) / 2));
  background: var(--bvp-primary);
}

.bvp-builder-blue .bvp-section-heading h2,
.bvp-builder-blue .bvp-section-heading p,
.bvp-builder-blue h3,
.bvp-builder-blue p {
  color: #fff;
}

/* Ensure no gap between the last page section (map) and the footer */
.bvp-main > *:last-child,
.bvp-main > .bvp-get-in-touch:last-child,
.bvp-main > .bvp-treatments-contact:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.bvp-main > *:last-child .bvp-map-wrap,
.bvp-map-wrap:last-child {
  margin-bottom: 0;
}

.bvp-footer {
  background: var(--bvp-primary-dark);
  color: rgba(255,255,255,0.85);
}

.bvp-footer-top { padding: 0 0 3rem; }

.bvp-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  width: min(var(--bvp-max), calc(100% - 3rem));
  margin: 0 auto;
  padding-top: 3rem;
}

.bvp-footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.bvp-footer-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  min-height: 3.25rem;
  border-radius: 999px;
  background: var(--bvp-secondary);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 2rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.bvp-footer-book:hover {
  background: #f28c1c;
  color: #000;
  transform: translateY(-2px);
}

.bvp-footer-brand-col p {
  margin: 0;
  max-width: 28rem;
  line-height: 1.75;
}

.bvp-footer-col h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bvp-footer p,
.bvp-footer li {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.bvp-footer p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
}

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

.bvp-footer a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 150ms ease;
}

.bvp-footer a:hover { color: var(--bvp-secondary); }

.bvp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}

.bvp-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: unset;
  gap: 1rem;
}

.bvp-footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); font-size: 0.8125rem; }

/* ─── Team cards ────────────────────────────────────────────────────── */
.bvp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.bvp-team-card {
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.bvp-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.13);
}

.bvp-team-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: var(--bvp-primary);
}

.bvp-team-card-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bvp-primary) 0%, var(--bvp-primary-dark) 100%);
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
}

.bvp-team-card-body {
  padding: 1.5rem;
}

.bvp-team-card-role {
  display: block;
  color: var(--bvp-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.bvp-team-card-name {
  margin: 0 0 0.75rem;
  color: var(--bvp-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.bvp-team-card-bio {
  margin: 0;
  color: var(--bvp-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Service archive cards ─────────────────────────────────────────── */
.bvp-team-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 1.25rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--bvp-primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.bvp-team-card:hover .bvp-team-card-link {
  background: var(--bvp-primary-dark);
  transform: translateY(-2px);
}

.bvp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bvp-service-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--bvp-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bvp-service-card:hover {
  border-color: var(--bvp-secondary);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.bvp-service-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}

.bvp-service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

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

.bvp-service-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bvp-primary) 0%, var(--bvp-primary-dark) 100%);
}

.bvp-service-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.bvp-service-card h3 {
  margin: 0;
  color: var(--bvp-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.bvp-service-card p {
  margin: 0;
  color: var(--bvp-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  flex: 1;
}

.bvp-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--bvp-primary);
  font-size: 0.875rem;
  font-weight: 700;
}

.bvp-services-summary {
  background: var(--bvp-primary);
  color: #fff;
}

.bvp-services-summary .bvp-eyebrow {
  color: rgba(255,255,255,0.7);
}

.bvp-services-summary h2 {
  color: #fff;
}

.bvp-service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.bvp-service-summary-card {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.bvp-service-summary-card h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.bvp-service-summary-card p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 0.9375rem;
}

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

  .bvp-service-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bvp-service-grid {
    grid-template-columns: 1fr;
  }

  .bvp-service-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Service overview (2-column: content + benefits) ───────────────── */
.bvp-service-overview {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.bvp-service-copy h2 {
  margin: 0 0 1.5rem;
  color: var(--bvp-primary);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.bvp-service-copy p {
  margin: 0 0 1.25rem;
  color: var(--bvp-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.bvp-service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Benefits column */
.bvp-service-benefits-col {
  position: sticky;
  top: 6rem;
  background: #fff;
  border: 1px solid var(--bvp-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.bvp-service-benefits-col h3 {
  margin: 0 0 1.25rem;
  color: var(--bvp-primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.bvp-benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bvp-benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bvp-foreground);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.bvp-benefit-list svg {
  color: var(--bvp-secondary);
  flex-shrink: 0;
}

/* ─── FAQ accordion ─────────────────────────────────────────────────── */
.bvp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 56rem;
}

details.bvp-faq-item {
  border: 1px solid var(--bvp-border);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}

details.bvp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bvp-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

details.bvp-faq-item summary::-webkit-details-marker { display: none; }

details.bvp-faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--bvp-secondary);
  transition: transform 200ms ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

details.bvp-faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.bvp-faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--bvp-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ─── Related services ──────────────────────────────────────────────── */
.bvp-related-services { background: var(--bvp-background); }

.bvp-related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Compact cards inside the related services section */
.bvp-related-service-grid .bvp-service-card-image {
  aspect-ratio: 16 / 8;
}

.bvp-related-service-grid .bvp-service-card-body {
  padding: 1rem 1.125rem;
  gap: 0.5rem;
}

.bvp-related-service-grid .bvp-service-card h3 {
  font-size: 1rem;
}

.bvp-related-service-grid .bvp-service-card p {
  font-size: 0.875rem;
  line-height: 1.55;
}

.bvp-related-service-grid .bvp-service-card-link {
  font-size: 0.8125rem;
}

.bvp-get-in-touch {
  margin-top: 0;
  padding-top: 5rem;
  padding-bottom: 0;
  background: var(--bvp-background);
}

.bvp-builder > .bvp-get-in-touch {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.bvp-get-in-touch .bvp-container {
  width: min(var(--bvp-max), calc(100% - 2rem));
  max-width: 100%;
}

.bvp-get-in-touch .bvp-section-heading {
  max-width: none;
  margin-bottom: 2rem;
}

.bvp-get-in-touch .bvp-section-heading h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(3.25rem, 4vw, 4rem);
  line-height: 1;
}

.bvp-get-in-touch .bvp-section-heading p {
  margin: 0;
  color: rgba(51, 51, 51, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.bvp-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  border: 1px solid rgba(26, 90, 143, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.bvp-contact-info,
.bvp-contact-form-wrap {
  min-width: 0;
}

.bvp-contact-info {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(26, 90, 143, 0.1);
  border-radius: 0.85rem;
  background: #f7fafc;
}

.bvp-contact-form-wrap {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem 2rem 0.5rem;
}

.bvp-contact-info h3,
.bvp-contact-form-wrap h3 {
  margin-bottom: 1.75rem;
  font-size: 1.25rem;
}

.bvp-contact-top-row {
  gap: 1rem;
}

.bvp-contact-item {
  margin-bottom: 1.25rem;
  padding: 1.15rem;
  border: 1px solid rgba(26, 90, 143, 0.1);
  border-radius: 0.75rem;
  background: #fff;
}

.bvp-contact-book-box {
  margin-top: auto;
  padding: 1.75rem;
  background: #fff4e8;
  border: 1px solid rgba(255, 153, 51, 0.28);
  border-radius: 0.75rem;
  box-shadow: none;
  text-align: center;
  width: 100%;
}

.bvp-contact-book-box p {
  margin: 0 0 0.25rem;
  color: var(--bvp-primary);
  font-weight: 700;
  font-size: 1rem;
}

.bvp-contact-book-box p + p {
  margin-bottom: 1.25rem;
  color: rgba(51, 51, 51, 0.72);
}

.bvp-contact-book-box .bvp-button,
.bvp-form .bvp-button-primary {
  width: 100%;
  min-height: 3.25rem;
  border-radius: 999px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.bvp-form {
  gap: 1rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.bvp-form-row-two {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bvp-form-field {
  gap: 0.55rem;
}

.bvp-form-field input {
  height: 3rem;
}

.bvp-form-field textarea {
  flex: 1;
  min-height: 8rem;
}

.bvp-form-field:has(textarea) {
  flex: 1;
}

.bvp-form .bvp-button-primary {
  margin-top: auto;
}

.bvp-team-section {
  margin-top: 4rem;
}

/* ─── Service sub-page layout ────────────────────────────────────────── */
.bvp-breadcrumb {
  background: var(--bvp-background);
  border-bottom: 1px solid var(--bvp-border);
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.bvp-breadcrumb a {
  color: var(--bvp-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 150ms ease;
}

.bvp-breadcrumb a:hover { color: var(--bvp-secondary); }

.bvp-svc-layout { background: #fff; }

.bvp-svc-cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.bvp-svc-main { min-width: 0; }

.bvp-svc-main h2 {
  margin: 0 0 1.25rem;
  color: var(--bvp-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.bvp-svc-main p {
  color: var(--bvp-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Key Benefits */
.bvp-svc-benefits { margin-top: 2rem; }

.bvp-svc-benefits h3 {
  margin: 0 0 1rem;
  color: var(--bvp-foreground);
  font-size: 1.125rem;
  font-weight: 700;
}

.bvp-svc-benefit-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bvp-svc-benefit-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bvp-background);
  border: 1px solid var(--bvp-border);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bvp-foreground);
}

.bvp-benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bvp-secondary);
  flex-shrink: 0;
}

/* Why Choose box */
.bvp-why-choose-box {
  margin-top: 2.5rem;
  background: var(--bvp-background);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--bvp-border);
}

.bvp-why-choose-box h3 {
  margin: 0 0 1.5rem;
  color: var(--bvp-primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.bvp-why-choose-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bvp-why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bvp-why-choose-list li div { flex: 1; }

.bvp-why-choose-list strong {
  display: block;
  color: var(--bvp-foreground);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.bvp-why-choose-list p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--bvp-muted);
  line-height: 1.6;
}

.bvp-why-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--bvp-secondary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

/* Sidebar booking card */
.bvp-svc-sidebar {
  position: sticky;
  top: 100px;
}

.bvp-svc-book-card {
  background: #fff;
  border: 1px solid var(--bvp-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}

.bvp-svc-book-card h3 {
  margin: 0 0 0.75rem;
  color: var(--bvp-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.bvp-svc-book-card > p {
  margin: 0 0 1.5rem;
  color: var(--bvp-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.bvp-btn-full {
  width: 100%;
  min-height: 3.25rem;
  text-align: center;
}

.bvp-svc-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.875rem;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  border: 2px solid var(--bvp-primary);
  border-radius: 999px;
  color: var(--bvp-primary);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.bvp-svc-call-btn:hover {
  background: var(--bvp-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Meet Our Team on service page */
/* ─── About page ──────────────────────────────────────────────────── */
.bvp-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bvp-about-intro-image img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
}

.bvp-about-intro-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--bvp-primary);
  margin-bottom: 1.25rem;
}

.bvp-about-mission {
  background: var(--bvp-primary);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bvp-about-mission-quote {
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  border: none;
  padding: 0;
}

@media (max-width: 900px) {
  .bvp-about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .bvp-about-intro-image { order: -1; }
}

.bvp-svc-team { background: var(--bvp-background); }

.bvp-svc-team,
.bvp-about-team,
.bvp-location-doctors {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.bvp-svc-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bvp-svc-team-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.bvp-svc-team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

.bvp-svc-team-placeholder {
  background: linear-gradient(135deg, var(--bvp-primary), var(--bvp-primary-dark));
}

.bvp-svc-team-name {
  display: block;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--bvp-primary);
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.bvp-svc-team-name:hover { color: var(--bvp-secondary); }

.bvp-svc-team-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--bvp-secondary);
  margin-bottom: 0.75rem;
}

.bvp-svc-team-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--bvp-muted);
  line-height: 1.65;
}

.bvp-about-team .bvp-svc-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bvp-about-team .bvp-svc-team-card {
  overflow: hidden;
}

.bvp-about-team .bvp-section-actions {
  margin-top: 2rem;
}

@media (max-width: 1080px) {
  .bvp-about-team .bvp-svc-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bvp-about-team .bvp-svc-team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bvp-about-team .bvp-svc-team-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}

/* FAQ section */
.bvp-faq-section { background: var(--bvp-background); }

.bvp-faq-section .bvp-faq-list { margin: 0 auto; }

/* Contact booking box inside get-in-touch */
.bvp-contact-book-box {
  margin-top: auto;
  padding: 1.75rem;
  background: #fff4e8;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 153, 51, 0.28);
  box-shadow: none;
  text-align: center;
  width: 100%;
}

.bvp-contact-book-box > p:first-child {
  font-weight: 700;
  color: var(--bvp-primary);
  margin: 0;
  font-size: 1rem;
}

.bvp-get-in-touch .bvp-contact-divider {
  display: none;
}

.bvp-get-in-touch .bvp-contact-item svg {
  width: 2rem;
  height: 2rem;
  padding: 0.35rem;
  border-radius: 50%;
  background: rgba(26, 90, 143, 0.08);
}

.bvp-get-in-touch .bvp-contact-top-row .bvp-contact-item {
  margin-bottom: 1rem;
}

.bvp-get-in-touch .bvp-contact-item:not(.bvp-contact-top-row .bvp-contact-item) {
  margin-bottom: 1.25rem;
}

/* Hours list in contact section */
.bvp-hours-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--bvp-muted);
  line-height: 1.8;
}

/* ─── Contact Form 7 styling ─────────────────────────────────────────── */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wpcf7-form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bvp-foreground);
  line-height: 1.4;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--bvp-border);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.9375rem;
  font-family: Roboto, Arial, sans-serif;
  color: var(--bvp-foreground);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  appearance: none;
  box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--bvp-primary);
  box-shadow: 0 0 0 3px rgba(26, 90, 143, 0.12);
}

.wpcf7-form textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(51,51,51,0.42);
}

/* Submit button — matches bvp-form-submit */
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 0 2rem;
  min-height: 3.25rem;
  background: var(--bvp-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  font-family: Roboto, Arial, sans-serif;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  letter-spacing: 0.01em;
}

.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
  background: var(--bvp-primary-dark);
  transform: translateY(-2px);
}

.wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* CF7 validation messages */
.wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  display: block;
}

.wpcf7-not-valid input,
.wpcf7-not-valid textarea {
  border-color: #c0392b !important;
}

.wpcf7-response-output {
  margin-top: 0.75rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem !important;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: #e8f5e9 !important;
  color: #1b5e20 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #fdecea !important;
  color: #b71c1c !important;
}

/* ─── Services mobile slider ─────────────────────────────────────────── */
.bvp-services-slider-wrap {
  position: relative;
  overflow: hidden;
}

.bvp-svc-arrow {
  display: none; /* desktop: hidden */
}

/* Form submit button */
.bvp-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background: var(--bvp-primary);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  width: 100%;
  min-height: 3.25rem;
}

.bvp-form-submit:hover {
  background: var(--bvp-primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .bvp-service-overview {
    grid-template-columns: 1fr;
  }
  .bvp-service-benefits-col { position: static; }
  .bvp-svc-cols {
    grid-template-columns: 1fr;
  }
  .bvp-svc-sidebar { position: static; }
  .bvp-related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bvp-faq-grid,
  .bvp-contact-layout {
    grid-template-columns: 1fr;
  }

  .bvp-contact-form-wrap {
    padding: 0;
  }
}

/* ─── Blog cards ─────────────────────────────────────────────────────── */
.bvp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.bvp-blog-card {
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.bvp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.bvp-blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--bvp-primary);
}

.bvp-blog-card-body {
  padding: 1.5rem;
}

.bvp-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--bvp-muted);
  font-size: 0.8125rem;
}

.bvp-blog-card h3 {
  margin: 0 0 0.75rem;
  color: var(--bvp-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.bvp-blog-card-excerpt {
  margin: 0;
  color: var(--bvp-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Locations listing — Areas We Serve ────────────────────────────── */
.bvp-blog-single-banner {
  min-height: 520px;
}

.bvp-blog-single-content {
  max-width: 52rem;
  margin: 0 auto;
}

.bvp-blog-single-content > *:first-child {
  margin-top: 0;
}

.bvp-blog-single-actions {
  justify-content: center;
  margin-top: 3rem;
}

.bvp-areas-section {
  background: var(--bvp-background);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.bvp-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.bvp-location-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0.75rem;
  border: 1px solid var(--bvp-border);
  background: #fff;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--bvp-foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bvp-location-card:hover {
  border-color: var(--bvp-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.bvp-location-card-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.12);
  color: var(--bvp-secondary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.bvp-location-card-name {
  font-family: Roboto, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bvp-primary);
  margin: 0 0 0.5rem;
}

.bvp-location-card-desc {
  font-size: 0.875rem;
  color: var(--bvp-muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.bvp-location-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bvp-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

/* ─── Single service / team member page ─────────────────────────────── */
.bvp-location-back {
  background: var(--bvp-background);
  padding: 1rem 0;
}

.bvp-location-back a {
  color: var(--bvp-primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.bvp-location-back a:hover { color: var(--bvp-secondary); }

.bvp-location-detail-intro {
  background: #fff;
}

.bvp-location-content {
  max-width: 56rem;
  margin: 0 auto;
}

.bvp-location-content h2 {
  margin: 0 0 1.5rem;
  color: var(--bvp-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.bvp-location-searches {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bvp-background);
  border-radius: 0.5rem;
}

.bvp-location-searches h3 {
  margin: 0 0 0.75rem;
  color: var(--bvp-primary);
  font-size: 1.25rem;
}

.bvp-location-searches p {
  margin: 0;
  color: var(--bvp-foreground);
}

.bvp-location-services {
  background: var(--bvp-background);
}

.bvp-location-doctors {
  background: #fff;
}

.bvp-location-service-grid,
.bvp-location-doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bvp-location-doctor-card {
  background: var(--bvp-background);
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.bvp-location-doctor-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}

.bvp-location-doctor-card > div {
  padding: 1.35rem;
}

.bvp-location-doctor-card h3 {
  margin: 0 0 0.45rem;
  color: var(--bvp-primary);
  font-size: 1.25rem;
}

.bvp-location-doctor-card p {
  margin: 0.75rem 0 0;
  color: var(--bvp-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
}

.bvp-location-doctor-role {
  color: var(--bvp-secondary) !important;
  font-weight: 700;
  margin-top: 0 !important;
}

.bvp-location-doctor-qualifications {
  color: var(--bvp-muted) !important;
  font-size: 0.875rem !important;
}

.bvp-member-hero {
  max-width: 58rem;
  padding: 4rem 0 5rem;
}

.bvp-member-photo {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.bvp-member-photo img {
  width: 100%;
  display: block;
}

.bvp-member-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bvp-primary), var(--bvp-primary-dark));
  color: rgba(255,255,255,0.25);
  font-size: 5rem;
}

.bvp-member-info h1 {
  margin: 0 0 0.5rem;
  color: var(--bvp-primary);
  font-size: clamp(2rem, 4vw, 3rem);
}

.bvp-member-role {
  display: inline-block;
  color: var(--bvp-secondary);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ─── Responsive breakpoints ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .bvp-header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
    min-height: auto;
    gap: 0.75rem;
  }

  .bvp-brand { margin-right: 0; }

  .bvp-hamburger {
    display: flex;
    order: 3;
  }

  .bvp-nav {
    display: none;
    order: 4;
    width: calc(100% + 3rem); /* bleed to header edges */
    margin-left: -1.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
    border-top: 1px solid var(--bvp-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 0.5rem 1.5rem 1rem;
  }

  .bvp-nav.is-open { display: flex; }

  .bvp-header-right { display: none; }
  .bvp-nav.is-open .bvp-header-right { display: none; }

  .bvp-menu {
    flex-direction: column;
    width: 100%;
  }

  .bvp-menu > li { width: 100%; }

  .bvp-menu > li > a {
    min-height: 44px;
    padding: 0 0.5rem;
    border-bottom: 1px solid var(--bvp-border);
    width: 100%;
  }

  .bvp-menu .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--bvp-secondary);
    border-radius: 0;
    padding: 0.25rem 0;
    margin-left: 1rem;
    display: none;
  }

  .bvp-menu li.is-open > .sub-menu { display: block; }

  .bvp-intro-grid,
  .bvp-builder-split,
  .bvp-cta,
  .bvp-contact-strip,
  .bvp-member-hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bvp-footer-inner { grid-template-columns: 1fr 1fr; }
  .bvp-footer-brand-col { grid-column: span 2; }

  .bvp-intro-sticky,
  .bvp-intro-body {
    position: static;
    width: 100%;
    flex-basis: auto;
  }

  .bvp-feature-grid,
  .bvp-treatment-grid,
  .bvp-check-grid,
  .bvp-builder-card-grid,
  .bvp-team-grid,
  .bvp-blog-grid,
  .bvp-service-grid,
  .bvp-location-grid,
  .bvp-location-service-grid,
  .bvp-location-doctor-grid,
  .bvp-services-grid-home,
  .bvp-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bvp-contact-layout,
  .bvp-form-row-two {
    grid-template-columns: 1fr;
  }

  .bvp-builder-split-reverse .bvp-builder-copy { order: initial; }
}

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

@media (max-width: 700px) {
  body.admin-bar .bvp-header { top: 46px; }

  .bvp-container,
  .bvp-footer-inner,
  .bvp-page-content,
  .bvp-builder,
  .bvp-header-inner {
    width: min(100% - 1.5rem, var(--bvp-max));
  }

  /* Smaller logo on mobile */
  .bvp-logo-img,
  .bvp-logo img,
  .bvp-logo .custom-logo,
  .bvp-brand .custom-logo { height: 36px; }

  .bvp-brand-name { font-size: 1.05rem; }

  /* Contact item: smaller icon + tighter gap so address fits on fewer lines */
  .bvp-contact-item {
    gap: 0.5rem;
  }

  .bvp-get-in-touch .bvp-contact-item svg {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.25rem;
    flex-shrink: 0;
  }

  .bvp-contact-item span,
  .bvp-contact-item a,
  .bvp-hours-list li {
    font-size: 0.8125rem;
  }

  /* Reviews: full-width cards on small mobile */
  .bvp-testimonials-box { padding: 2.5rem 1rem; }
  .bvp-testimonial-slider { padding: 0 2.25rem; }

  .bvp-review-card {
    /* 1rem box padding × 2 + 2.25rem slider padding × 2 + 1.5rem container margin = ~9rem */
    flex: 0 0 calc(100vw - 9rem);
  }

  .bvp-hero-banner {
    height: calc(100vh - 80px);
    min-height: 620px;
  }

  .bvp-hero-copy h1 { font-size: clamp(3rem, 16vw, 4.5rem); }

  .bvp-button {
    width: 100%;
    min-height: 3.5rem;
    padding: 0 1.5rem;
  }

  .bvp-feature-grid,
  .bvp-treatment-grid,
  .bvp-check-grid,
  .bvp-testimonial-grid,
  .bvp-builder-card-grid,
  .bvp-team-grid,
  .bvp-blog-grid,
  .bvp-service-grid,
  .bvp-location-grid,
  .bvp-location-service-grid,
  .bvp-location-doctor-grid,
  .bvp-services-grid-home,
  .bvp-why-grid,
  .bvp-svc-team-grid,
  .bvp-hero-stats {
    grid-template-columns: 1fr;
  }

  .bvp-svc-cols { grid-template-columns: 1fr; }
  .bvp-svc-sidebar { position: static; }

  .bvp-footer-inner { grid-template-columns: 1fr; }
  .bvp-footer-brand-col { grid-column: auto; }
  .bvp-footer-bottom-inner { flex-direction: column; text-align: center; }

  .bvp-contact-layout,
  .bvp-form-row-two { grid-template-columns: 1fr; }

  .bvp-contact-top-row { grid-template-columns: 1fr; }

  .bvp-hero-stats { display: grid; gap: 1rem; }

  .bvp-feature-image img { height: 340px; }

  .bvp-section,
  .bvp-appointment-banner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .bvp-get-in-touch {
    padding-top: 3rem;
  }

  .bvp-get-in-touch .bvp-section-heading {
    margin-bottom: 1.5rem;
  }

  .bvp-map-wrap {
    margin-top: 1.5rem;
  }

  .bvp-svc-team,
  .bvp-about-team,
  .bvp-location-doctors {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .bvp-testimonial-slider {
    padding: 0 2.5rem;
  }

  /* Reviews: near full-width cards on tablet/mobile */
  .bvp-testimonials-box { padding: 3rem 1.5rem; }
  .bvp-review-card {
    /* 1.5rem box padding × 2 + 2.5rem slider padding × 2 + 3rem container margin = ~12rem */
    flex: 0 0 calc(100vw - 12rem);
    max-width: none;
  }

  .bvp-testimonial-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }

  .bvp-treatment-row,
  .bvp-treatment-row--reverse {
    grid-template-columns: 1fr;
  }

  .bvp-treatment-row--reverse .bvp-treatment-image {
    order: -1;
  }
}

/* ─── Treatments page ────────────────────────────────────────────────── */
.bvp-treatments-section { background: #fff; }

.bvp-treatment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: none;
}

.bvp-treatment-row:last-child { border-bottom: none; }

.bvp-treatment-row--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: none;
}

.bvp-treatments-contact {
  padding-top: 2rem;
}

.bvp-treatment-row--reverse .bvp-treatment-image { order: 2; }
.bvp-treatment-row--reverse .bvp-treatment-content { order: 1; }

.bvp-treatment-image img {
  width: 100%;
  height: clamp(475px, 40vw, 575px);
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

.bvp-treatment-img-placeholder {
  width: 100%;
  height: clamp(475px, 40vw, 575px);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--bvp-primary), var(--bvp-primary-dark));
}

.bvp-treatment-content h2 {
  margin: 0 0 1rem;
  color: var(--bvp-primary);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.bvp-treatment-content > p {
  color: var(--bvp-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.bvp-treatment-meta {
  margin-bottom: 1rem;
}

.bvp-treatment-meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bvp-muted);
  margin-bottom: 0.5rem;
}

.bvp-treatment-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bvp-treatment-tags li {
  background: rgba(26, 90, 143, 0.07);
  color: var(--bvp-primary);
  border-radius: 2rem;
  padding: 0.25rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(26, 90, 143, 0.15);
}

.bvp-treatment-tags--conditions li {
  background: rgba(255, 153, 51, 0.08);
  color: #b36a00;
  border-color: rgba(255, 153, 51, 0.25);
}

.bvp-treatment-tags--preparation li {
  background: rgba(40, 167, 69, 0.07);
  color: #1a6630;
  border-color: rgba(40, 167, 69, 0.22);
}

.bvp-treatment-content .bvp-button {
  margin-top: 1.25rem;
}

@media (max-width: 1080px) {
  .bvp-treatment-row,
  .bvp-treatment-row--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .bvp-treatment-row--reverse .bvp-treatment-image { order: -1; }
  .bvp-treatment-row--reverse .bvp-treatment-content { order: 0; }
}

/* ─── Mobile services slider ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .bvp-services-slider-wrap {
    position: relative;
    margin: 0 -1rem; /* bleed to screen edges */
    padding: 0 1rem;
  }

  .bvp-services-grid-home {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 0.75rem;
    grid-template-columns: unset !important;
  }

  .bvp-services-grid-home::-webkit-scrollbar { display: none; }

  .bvp-svc-card {
    scroll-snap-align: start;
    flex: 0 0 80vw;
    max-width: 320px;
  }

  .bvp-svc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bvp-border);
    color: var(--bvp-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: background 150ms ease, color 150ms ease;
  }

  .bvp-svc-arrow:hover {
    background: var(--bvp-primary);
    color: #fff;
  }

  .bvp-svc-prev { left: -0.5rem; }
  .bvp-svc-next { right: -0.5rem; }
}

/* ─── Footer accordion on mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .bvp-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .bvp-footer-brand-col {
    grid-column: auto !important;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.5rem;
  }

  .bvp-footer-col:not(.bvp-footer-brand-col) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .bvp-footer-col:not(.bvp-footer-brand-col) h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem 0;
    margin: 0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .bvp-footer-col:not(.bvp-footer-brand-col) h3::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--bvp-secondary);
    transition: transform 200ms ease;
    flex-shrink: 0;
  }

  .bvp-footer-col--open h3::after {
    transform: rotate(45deg);
  }

  .bvp-footer-col:not(.bvp-footer-brand-col) ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease, padding 200ms ease;
    padding-bottom: 0;
  }

  .bvp-footer-col--open ul {
    max-height: 400px;
    padding-bottom: 1rem;
  }
}

@media (max-width: 700px) {
  .bvp-testimonials-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .bvp-testimonials-box {
    padding: 0;
  }

  .bvp-testimonials-header {
    margin-bottom: 1.25rem;
  }

  .bvp-testimonials-header h2 {
    margin-bottom: 0.75rem;
    font-size: 2rem;
  }

  .bvp-google-rating {
    gap: 0.35rem;
  }

  .bvp-star {
    font-size: 1rem;
  }

  .bvp-rating-text {
    font-size: 0.875rem;
  }

  .bvp-google-link {
    display: none;
  }

  .bvp-testimonial-slider {
    padding: 0 1.25rem;
  }

  .bvp-testimonial-grid {
    gap: 1rem;
    padding-bottom: 0.35rem;
  }

  .bvp-review-card {
    flex-basis: calc(100vw - 4rem);
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .bvp-review-stars {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
  }

  .bvp-review-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .bvp-review-card cite {
    font-size: 0.9rem;
  }

  .bvp-review-date {
    font-size: 0.75rem;
  }

  .bvp-testimonial-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }
}