/* ============================================
   BEECHWOOD VETERINARY CLINIC — MAIN STYLESHEET
   ============================================ */

/* FONTS */
@font-face {
  font-family: 'Californian FB';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/CalifornianFB-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Californian FB';
  font-weight: bold;
  font-style: normal;
  src: url('../fonts/CalifornianFB-Bold.ttf') format('truetype');
}

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

html, body { height: 100%; }

body {
  font-family: 'Lato', sans-serif;
  background: #FBF8F1;
  overflow-y: auto;
}

/* ============================================
   NAV
   ============================================ */
.bvc-nav {
  background: white;
  border-bottom: 0.5px solid #eee;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 57px;
  touch-action: manipulation;
}
.bvc-nav-logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: fit-content;
  text-decoration: none;
}
.bvc-nav-logo { width: 40px; height: 40px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.bvc-nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.bvc-nav-brand { font-family: 'Californian FB', Georgia, serif; font-weight: bold; font-size: 0.95rem; color: #35658D; }
.bvc-nav-menu { display: flex; gap: 1.5rem; align-items: center; flex: 1; font-size: 0.9rem; }
.bvc-nav-menu a { text-decoration: none; color: #3D3935; transition: color 0.2s; white-space: nowrap; font-family: 'Lato', sans-serif; }
.bvc-nav-menu a:hover { color: #35658D; }
.bvc-nav-dropdown { position: relative; display: flex; align-items: center; gap: 2px; }
.bvc-nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; color: #3D3935; font-size: 0.9rem; background: none; border: none; font-family: 'Lato', sans-serif; padding: 0; transition: color 0.2s; text-decoration: none; }
.bvc-nav-dropdown-trigger:hover { color: #35658D; }
.bvc-nav-services-link { text-decoration: none; color: #3D3935; font-size: 0.9rem; font-family: 'Lato', sans-serif; transition: color 0.2s; white-space: nowrap; }
.bvc-nav-services-link:hover { color: #35658D; }
.bvc-nav-services-chevron { background: none; border: none; cursor: pointer; color: #3D3935; padding: 0 2px; display: flex; align-items: center; transition: color 0.2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.bvc-nav-services-chevron:hover { color: #35658D; }
.bvc-nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); background: white; border: 0.5px solid #eee; border-radius: 6px; min-width: 160px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); overflow: hidden; z-index: 200; }
.bvc-nav-dropdown.open .bvc-nav-dropdown-menu { display: block; }
.bvc-nav-dropdown-menu a { display: block; padding: 0.6rem 1rem; color: #3D3935; text-decoration: none; font-size: 0.85rem; transition: background 0.15s; white-space: nowrap; font-family: 'Lato', sans-serif; }
.bvc-nav-dropdown-menu a:hover { background: #f5f7fa; color: #35658D; }
.bvc-nav-dropdown-menu a + a { border-top: 0.5px solid #f0f0f0; }
.bvc-nav-cta { background: #35658D; color: white; padding: 0.5rem 1rem; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: 0.85rem; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; font-family: 'Lato', sans-serif; }
.bvc-nav-cta:hover { background: #2c4a6b; }
.bvc-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.bvc-hamburger span { display: block; width: 22px; height: 2px; background: #3D3935; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; transform-origin: center; }
.bvc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bvc-hamburger.open span:nth-child(2) { opacity: 0; }
.bvc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.bvc-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-top: 0.5px solid #eee; border-bottom: 0.5px solid #eee; z-index: 99; flex-direction: column; }
.bvc-mobile-menu.open { display: flex; }
.bvc-mobile-menu a { padding: 0.75rem 1.25rem; color: #3D3935; text-decoration: none; font-size: 0.9rem; border-bottom: 0.5px solid #f0f0f0; font-family: 'Lato', sans-serif; }
.bvc-mobile-menu a:hover { background: #f5f7fa; color: #35658D; }
.bvc-mobile-services-row { display: flex; align-items: center; justify-content: space-between; border-bottom: 0.5px solid #f0f0f0; }
.bvc-mobile-services-link { flex: 1; padding: 0.75rem 1.25rem; color: #3D3935; text-decoration: none; font-size: 0.9rem; font-family: 'Lato', sans-serif; }
.bvc-mobile-services-link:hover { color: #35658D; }
.bvc-mobile-services-toggle { display: flex; align-items: center; justify-content: center; padding: 0.75rem 1.25rem; color: #3D3935; cursor: pointer; background: none; border: none; font-family: 'Lato', sans-serif; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.bvc-mobile-submenu { display: none; background: #f9f9f7; flex-direction: column; }
.bvc-mobile-submenu.open { display: flex; }
.bvc-mobile-submenu a { display: block; padding: 0.65rem 1.25rem 0.65rem 2rem; font-size: 0.85rem; color: #555; border-bottom: 0.5px solid #f0f0f0; width: 100%; }
.bvc-mobile-cta-wrap { padding: 0.75rem 1.25rem; }
.bvc-mobile-cta-wrap .bvc-nav-cta { display: block; text-align: center; background: #1E3448; color: white; font-weight: 700; border: 2px solid #1E3448; }

/* ============================================
   HERO
   ============================================ */
.bvc-hero {
  display: grid;
  grid-template-columns: 33% 1fr;
  height: calc(100vh - 57px);
  overflow: hidden;
}
.bvc-hero-left {
  background: #1E3448;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  overflow: hidden;
}
.bvc-logo-row { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.bvc-logo-mark {
  width: min(280px, 80%);
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  flex-shrink: 0;
}
.bvc-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.bvc-logo-location { font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: #A49885; }
.bvc-clinic-name { font-family: 'Californian FB', Georgia, serif; font-size: clamp(2rem, 3.2vw, 4.8rem); font-weight: bold; color: #fff; line-height: 1.05; }
.bvc-hero-divider { width: 48px; height: 1px; background: rgba(218,211,193,0.4); margin: 0.65rem 0; }
.bvc-hero-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #A49885; }
.bvc-hero-tagline { font-family: 'Lato', sans-serif; font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 0.85rem; }
.bvc-hero-btn { display: block; background: #35658D; color: #fff; text-decoration: none; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.85rem 1.5rem; border-radius: 6px; text-align: center; transition: background 0.2s; }
.bvc-hero-btn:hover { background: #2c4a6b; }
.bvc-hero-phone { display: flex; align-items: center; gap: 0.65rem; color: #DAD3C1; font-family: 'Lato', sans-serif; font-size: 1.05rem; margin-top: 0.8rem; }
.bvc-hero-photo { position: relative; overflow: hidden; }
.bvc-hero-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ============================================
   FOOTER
   ============================================ */
.bvc-footer { background: #1E3448; color: #DAD3C1; padding: 3rem 2rem 1.5rem; }
.bvc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 0.5px solid rgba(218,211,193,0.2); margin-bottom: 1.5rem; }
.bvc-footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.bvc-footer-logo { width: 36px; height: 36px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.bvc-footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.bvc-footer-name { font-family: 'Californian FB', Georgia, serif; font-weight: bold; font-size: 0.9rem; color: white; }
.bvc-footer-tagline { font-family: 'Lato', sans-serif; font-size: 0.85rem; color: rgba(218,211,193,0.7); line-height: 1.6; }
.bvc-footer-contact { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.bvc-footer-contact a { color: #DAD3C1; text-decoration: none; font-family: 'Lato', sans-serif; font-size: 0.85rem; transition: color 0.2s; }
.bvc-footer-contact a:hover { color: white; }
.bvc-footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A49885; margin-bottom: 1rem; }
.bvc-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.bvc-footer-col ul li a { color: rgba(218,211,193,0.8); text-decoration: none; font-family: 'Lato', sans-serif; font-size: 0.85rem; transition: color 0.2s; }
.bvc-footer-col ul li a:hover { color: white; }
.bvc-footer-social { display: flex; gap: 0.75rem; }
.bvc-footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; border: 0.5px solid rgba(218,211,193,0.3); color: #DAD3C1; text-decoration: none; transition: background 0.2s, color 0.2s; }
.bvc-footer-social a:hover { background: rgba(218,211,193,0.1); color: white; }
.bvc-footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.bvc-footer-bottom { display: flex; justify-content: space-between; align-items: center; font-family: 'Lato', sans-serif; font-size: 0.78rem; color: rgba(218,211,193,0.45); }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .bvc-nav { padding: 0.75rem 1rem; }
  .bvc-nav-menu, .bvc-nav-cta { display: none; }
  .bvc-hamburger { display: flex; }
  .bvc-hero { grid-template-columns: 1fr; height: auto; }
  .bvc-hero-photo { order: -1; height: 55vw; position: relative; }
  .bvc-hero-left { padding: 1.75rem 1.5rem 2rem; }
  .bvc-logo-mark { width: min(120px, 40%); }
  .bvc-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .bvc-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   INTERIOR PAGES (shared)
   ============================================ */
.bvc-interior-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 3rem 5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.bvc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.bvc-contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
/* Get in touch + Hours side by side */
.bvc-contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.bvc-contact-heading {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.3rem;
  color: #35658D;
  border-bottom: 0.5px solid #DAD3C1;
  padding-bottom: 0.65rem;
  margin-bottom: 1.25rem;
}
.bvc-contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bvc-contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.bvc-contact-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A49885;
}
.bvc-contact-details a {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #3D3935;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.bvc-contact-details a:hover { color: #35658D; }
.bvc-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
}
.bvc-hours-table td {
  padding: 0.4rem 0;
  border-bottom: 0.5px solid #f0ece4;
  color: #3D3935;
}
.bvc-hours-table td:last-child {
  text-align: right;
  color: #35658D;
  font-weight: 700;
}
.bvc-hours-closed td {
  color: #A49885 !important;
}
.bvc-hours-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #A49885;
  font-style: italic;
  margin-top: 0.75rem;
}
.bvc-contact-map {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid #DAD3C1;
}
.bvc-contact-map iframe {
  width: 100%;
  height: 100%;
}
/* Right column — sticky scrollable form */
.bvc-contact-form {
  position: sticky;
  top: calc(57px + 2rem);
}
.bvc-contact-form .bvc-contact-heading {
  margin-bottom: 1.25rem;
}
.bvc-contact-form iframe {
  width: 100%;
  height: calc(100vh - 57px - 10rem);
  min-height: 600px;
  border: 0.5px solid #DAD3C1;
  border-radius: 10px;
  overflow-y: scroll;
}

@media (max-width: 1024px) {
  .bvc-contact-top { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .bvc-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bvc-contact-top { grid-template-columns: 1fr 1fr; }
  .bvc-contact-form { position: static; }
  .bvc-contact-form iframe { height: 700px; }
  .bvc-contact-map { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .bvc-contact-top { grid-template-columns: 1fr; }
}

/* ============================================
   VIRTUAL TOUR
   ============================================ */
.bvc-tour-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #DAD3C1;
  margin-bottom: 1rem;
}
.bvc-tour-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bvc-tour-caption {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: #6A6258;
}
.bvc-tour-caption a {
  color: #35658D;
  text-decoration: none;
}
.bvc-tour-caption a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bvc-interior-page { padding: 2rem 1.25rem 3rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.bvc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bvc-contact-section-title {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #35658D;
  margin-bottom: 1rem;
}

/* Form */
.bvc-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.bvc-form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.bvc-form-row label { font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; color: #3D3935; }
.bvc-required { color: #35658D; }
.bvc-optional { font-weight: 400; color: #A49885; font-size: 0.8rem; }
.bvc-form-row input,
.bvc-form-row textarea {
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: #3D3935;
  background: white;
  border: 0.5px solid #DAD3C1;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
.bvc-form-row input:focus,
.bvc-form-row textarea:focus { border-color: #35658D; }
.bvc-form-row textarea { resize: vertical; min-height: 130px; }
.bvc-form-submit {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: #35658D;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.bvc-form-submit:hover { background: #2c4a6b; }
.bvc-form-success {
  background: #e8f4ed;
  border: 0.5px solid #a8d5b5;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: #2d6a4f;
}
.bvc-form-error {
  background: #fdecea;
  border: 0.5px solid #f5c0bb;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: #9b2c2c;
}

/* Contact details */
.bvc-contact-details { margin-bottom: 2rem; }
.bvc-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.bvc-contact-list li { display: flex; flex-direction: column; gap: 0.2rem; }
.bvc-contact-label { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #A49885; }
.bvc-contact-list a { font-family: 'Lato', sans-serif; font-size: 0.93rem; color: #3D3935; text-decoration: none; transition: color 0.2s; line-height: 1.5; }
.bvc-contact-list a:hover { color: #35658D; }

/* Hours */
.bvc-hours { margin-bottom: 2rem; }
.bvc-hours-table { width: 100%; border-collapse: collapse; font-family: 'Lato', sans-serif; font-size: 0.9rem; }
.bvc-hours-table td { padding: 0.45rem 0; color: #3D3935; }
.bvc-hours-table td:first-child { color: #6A6258; width: 120px; }
.bvc-hours-table tr { border-bottom: 0.5px solid #F0EBE0; }
.bvc-hours-table tr:last-child { border-bottom: none; }
.bvc-closed { color: #A49885 !important; }
.bvc-hours-note { font-family: 'Lato', sans-serif; font-size: 0.82rem; color: #A49885; margin-top: 0.75rem; font-style: italic; }

/* Map */
.bvc-contact-map { border-radius: 10px; overflow: hidden; border: 0.5px solid #DAD3C1; aspect-ratio: 4 / 3; position: relative; }
.bvc-contact-map iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 768px) {
  .bvc-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   ONLINE RX PAGE
   ============================================ */
.bvc-rx-section {
  margin-bottom: 3.5rem;
}
.bvc-rx-heading {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.3rem;
  color: #35658D;
  border-bottom: 0.5px solid #DAD3C1;
  padding-bottom: 0.65rem;
  margin-bottom: 2rem;
}

/* Steps */
.bvc-rx-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.bvc-rx-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.bvc-rx-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1E3448;
  color: white;
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.bvc-rx-step h3 {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #35658D;
  margin-bottom: 0.5rem;
}
.bvc-rx-step p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #6A6258;
  line-height: 1.7;
}
.bvc-rx-step-divider {
  width: 60px;
  height: 1px;
  background: #DAD3C1;
  margin-top: 26px;
  flex-shrink: 0;
}

/* CTA */
.bvc-rx-cta {
  text-align: center;
  margin-bottom: 3.5rem;
}
.bvc-rx-btn {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.bvc-rx-btn:hover {
  opacity: 0.88;
  transform: scale(1.02);
}
.bvc-rx-btn img {
  height: 140px;
  width: auto;
}

/* FAQ accordion */
.bvc-rx-faqs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bvc-rx-faq {
  border-bottom: 0.5px solid #DAD3C1;
}
.bvc-rx-faq:first-child {
  border-top: 0.5px solid #DAD3C1;
}
.bvc-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1E3448;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bvc-faq-trigger:hover { color: #35658D; }
.bvc-faq-icon {
  flex-shrink: 0;
  color: #A49885;
  transition: transform 0.25s;
}
.bvc-rx-faq.open .bvc-faq-icon {
  transform: rotate(180deg);
}
.bvc-faq-body {
  display: none;
  padding-bottom: 1.1rem;
}
.bvc-rx-faq.open .bvc-faq-body {
  display: block;
}
.bvc-rx-faq p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #6A6258;
  line-height: 1.75;
}
.bvc-rx-faq a {
  color: #35658D;
  text-decoration: none;
}
.bvc-rx-faq a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .bvc-rx-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .bvc-rx-step { padding: 0; }
  .bvc-rx-step-divider {
    width: 1px;
    height: 30px;
    margin-top: 0;
  }
}

/* ============================================
   TEAM PAGE
   ============================================ */

.bvc-page-header {
  background: #1E3448;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.bvc-page-header h1 {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: white;
  margin-bottom: 0.85rem;
}
.bvc-page-header p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: rgba(218,211,193,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.bvc-team-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 3rem 5rem;
}
.bvc-section-label {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.3rem;
  color: #35658D;
  border-bottom: 0.5px solid #DAD3C1;
  padding-bottom: 0.65rem;
  margin-bottom: 1.75rem;
}

/* DR. DAWES — full width featured card */
.bvc-featured-card {
  background: white;
  border: 1px solid #A49885;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.bvc-featured-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.bvc-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.bvc-featured-body {
  padding: 1.75rem 2rem 2rem;
}
.bvc-featured-name {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #35658D;
  margin-bottom: 0.2rem;
}
.bvc-featured-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A49885;
  margin-bottom: 0.85rem;
}
.bvc-featured-bio {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #3D3935;
  line-height: 1.8;
}
.bvc-featured-bio p + p { margin-top: 0.7rem; }

/* TEAM GRID — matches family card style */
.bvc-member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.bvc-member-card {
  background: white;
  border: 0.5px solid #DAD3C1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bvc-member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #5285A6, #35658D);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bvc-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bvc-member-photo-placeholder {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.8);
}
.bvc-member-body {
  padding: 1.1rem 1.25rem 1.4rem;
}
.bvc-member-name {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.15rem;
  color: #35658D;
  margin-bottom: 0.15rem;
}
.bvc-member-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A49885;
  margin-bottom: 0.6rem;
}
.bvc-member-bio {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: #3D3935;
  line-height: 1.75;
}
.bvc-member-bio p + p { margin-top: 0.5rem; }

/* FAMILY GRID */
.bvc-family-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bvc-family-card {
  background: #F0EBE0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bvc-family-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}
.bvc-family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bvc-family-body { padding: 1.25rem 1.5rem 1.5rem; }
.bvc-family-name {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.15rem;
  color: #35658D;
  margin-bottom: 0.35rem;
}
.bvc-family-bio {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #6A6258;
  line-height: 1.65;
}
.bvc-family-bio p + p { margin-top: 0.5rem; }

@media (max-width: 900px) {
  .bvc-member-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bvc-page-header { padding: 2.5rem 1.25rem 2rem; }
  .bvc-team-page { padding: 2rem 1.25rem 3rem; }
  .bvc-featured-photo { aspect-ratio: 4 / 3; }
  .bvc-featured-body { padding: 1.25rem; }
  .bvc-featured-name { font-size: 1.3rem; }
  .bvc-member-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .bvc-family-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bvc-member-grid { grid-template-columns: 1fr; }
}
/* ============================================
   SERVICES LANDING PAGE
   ============================================ */
.bvc-services-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.bvc-services-intro p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #6A6258;
  line-height: 1.8;
}
.bvc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.bvc-service-card {
  background: white;
  border: 0.5px solid #DAD3C1;
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.bvc-service-card:hover {
  border-color: #35658D;
  transform: translateY(-2px);
}
.bvc-service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #E8EFF5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #35658D;
  font-size: 22px;
}
.bvc-service-card-name {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #1E3448;
}
.bvc-service-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: #6A6258;
  line-height: 1.65;
  flex: 1;
}
.bvc-service-card-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #35658D;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.bvc-services-cta {
  text-align: center;
  padding: 2.5rem;
  background: #F0EBE0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.bvc-services-cta p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #3D3935;
  margin: 0;
}

/* ============================================
   SHARED SERVICE PAGE STYLES
   ============================================ */
.bvc-service-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
}
.bvc-service-intro p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #6A6258;
  line-height: 1.8;
}
.bvc-service-section {
  margin-bottom: 3.5rem;
}
.bvc-service-heading {
  font-family: 'Californian FB', Georgia, serif;
  font-weight: bold;
  font-size: 1.3rem;
  color: #35658D;
  border-bottom: 0.5px solid #DAD3C1;
  padding-bottom: 0.65rem;
  margin-bottom: 1.5rem;
}
.bvc-service-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #6A6258;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Photo layouts */
.bvc-service-photo-single {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #DAD3C1;
}
.bvc-service-photo-single img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}
.bvc-service-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.bvc-service-photo {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #DAD3C1;
}
.bvc-service-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bvc-service-photo-caption {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #A49885;
  text-align: center;
  padding: 0.5rem;
  background: white;
}

/* Split layout */
.bvc-service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.bvc-service-split-photo img {
  width: 100%;
  border-radius: 12px;
  border: 0.5px solid #DAD3C1;
  display: block;
}
.bvc-service-split-photo--placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 0.5px dashed #DAD3C1;
  background: #F0EBE0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #A49885;
  font-size: 3rem;
}
.bvc-service-split-photo--placeholder p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #A49885;
  text-align: center;
}

/* Feature blocks */
.bvc-service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bvc-service-features--compact {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.bvc-service-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.bvc-service-feature > i {
  font-size: 22px;
  color: #35658D;
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
}
.bvc-service-feature h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1E3448;
  margin-bottom: 0.3rem;
}
.bvc-service-feature p {
  font-family: 'Lato', sans-serif;
  font-size: 0.87rem;
  color: #6A6258;
  line-height: 1.65;
}

/* Equipment grid */
.bvc-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.bvc-equipment-card {
  background: white;
  border: 0.5px solid #DAD3C1;
  border-radius: 12px;
  overflow: hidden;
}
.bvc-equipment-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bvc-equipment-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.bvc-equipment-card h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1E3448;
  padding: 0.85rem 1rem 0.25rem;
}
.bvc-equipment-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: #6A6258;
  line-height: 1.6;
  padding: 0 1rem 1rem;
}

/* IDEXX badge */
.bvc-idexx-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #F0EBE0;
  border-radius: 10px;
}
.bvc-idexx-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.bvc-idexx-badge p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #6A6258;
  line-height: 1.5;
  margin: 0;
}

/* CTA buttons */
.bvc-btn-primary {
  display: inline-block;
  background: #35658D;
  color: white;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.bvc-btn-primary:hover { background: #2c4a6b; }
.bvc-btn-secondary {
  display: inline-block;
  background: white;
  color: #35658D;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #35658D;
  transition: background 0.2s, color 0.2s;
}
.bvc-btn-secondary:hover { background: #35658D; color: white; }

/* Service page CTA */
.bvc-service-cta {
  text-align: center;
  padding: 2.5rem;
  background: #F0EBE0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.bvc-service-cta p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #3D3935;
  margin: 0;
}
.bvc-service-cta .bvc-btn-primary,
.bvc-service-cta .bvc-btn-secondary {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

/* Services mobile */
@media (max-width: 900px) {
  .bvc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bvc-service-split { grid-template-columns: 1fr; }
  .bvc-equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .bvc-service-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bvc-services-grid { grid-template-columns: 1fr; }
  .bvc-service-photo-grid { grid-template-columns: 1fr; }
  .bvc-equipment-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NEW PATIENTS PAGE
   ============================================ */
.bvc-np-forms {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.bvc-np-form-block {
  /* each form sits in its own block */
}
.bvc-np-iframe-wrap {
  border: 0.5px solid #DAD3C1;
  border-radius: 12px;
  overflow: hidden;
}
.bvc-np-iframe-wrap iframe {
  width: 100%;
  min-height: 700px;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .bvc-np-iframe-wrap iframe { min-height: 600px; }
}
