/* ======================================================
   RESET & BASE
   ====================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0b1b2b;
  background: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --color-bg: #ffffff;
  --color-text: #0b1b2b;
  --color-muted: #4b6075;
  --color-border: #d8e4f0;
  --color-primary: #1f6feb;
  --color-primary-700: #174ea6;
  --color-primary-100: #e8f1ff;
  --shadow-sm: 0 6px 18px rgba(11, 27, 43, 0.08);
  --shadow-md: 0 10px 28px rgba(11, 27, 43, 0.10);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* ======================================================
   HEADER
   ====================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

/* When NOT transparent (scrolled down) = WHITE background */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(28, 156, 168, 0.15);
  box-shadow: 0 2px 12px rgba(28, 156, 168, 0.08);
}

/* When transparent (at top of page) = NO background */
.site-header.header-transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Explicitly set white background when scrolled */
.site-header.header-scrolled {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(28, 156, 168, 0.15) !important;
  box-shadow: 0 2px 12px rgba(28, 156, 168, 0.08) !important;
}

/* For pages that should always have white header (about, practices) */
.site-header.header-always-white {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(28, 156, 168, 0.15) !important;
  box-shadow: 0 2px 12px rgba(28, 156, 168, 0.08) !important;
}

.site-header.header-always-white .logo-default {
  display: block !important;
}

.site-header.header-always-white .logo-white {
  display: none !important;
}

.site-header.header-always-white .logo-text {
  color: var(--color-primary) !important;
  text-shadow: none !important;
}

.site-header.header-always-white .site-nav a:not(.btn) {
  color: var(--color-text) !important;
  text-shadow: none !important;
}

.site-header.header-always-white .btn-schedule {
  background: #ffffff !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
}

.site-header.header-always-white .btn-schedule:hover {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: 2px solid var(--color-primary) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-img {
  height: 56px;
  width: auto;
}

/* Logo swap logic:
   - When header is WHITE (not transparent): show WebsiteLogo.png (default logo)
   - When header is TRANSPARENT: show WebsiteLogoWhite.png (white logo) */

/* DEFAULT STATE (white header) - show normal logo, hide white logo */
.logo-default {
  display: block;
}

.logo-white {
  display: none;
}

/* TRANSPARENT STATE - hide normal logo, show white logo */
.site-header.header-transparent .logo-default {
  display: none;
}

.site-header.header-transparent .logo-white {
  display: block;
}

/* Logo text color:
   - White when transparent
   - Blue when white background */
.logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.site-header.header-transparent .logo-text {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.site-nav a:not(.btn) {
  padding: 0.35rem 0.2rem;
  border-radius: 999px;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--color-primary);
}

/* White nav links when header is transparent */
.site-header.header-transparent .site-nav a:not(.btn) {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.site-header.header-transparent .site-nav a:not(.btn):hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-text);
}

/* ======================================================
   BUTTONS
   ====================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: 2px solid var(--color-primary);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
}

.btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-schedule {
  padding: 0.65rem 1.75rem !important;
  font-size: 0.95rem !important;
  background: #ffffff !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
}

.btn-schedule:hover {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: 2px solid var(--color-primary) !important;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ======================================================
   HERO SECTION WITH BACKGROUND IMAGE
   ====================================================== */

.hero {
  padding: 8rem 0 5rem;
  background: #ffffff;
}

.hero-with-image {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: #2f6fde;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),
    linear-gradient(135deg, rgba(47, 111, 222, 1) 0%, rgba(90, 143, 245, 1) 100%);
  background-size: auto, cover;
  background-position: center;
}

.hero-with-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('MainImage.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.hero-with-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  pointer-events: none;
  z-index: 1;
}

.hero-inner-simple {
  position: relative;
  z-index: 2;
}

.hero-text-simple {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-with-image h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-with-image .hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #ffffff;
  opacity: 0.95;
}

/* Other hero pages */
.hero-about,
.hero-practices {
  padding: 6rem 0 3rem;
  background: #ffffff;
}

.hero-practices .hero-text-simple {
  max-width: 720px;
  text-align: center;
}

.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin-top: 1.5rem;
}

.practices-what-we-offer {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.practices-feature-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.practices-form-box {
  margin-top: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 2rem;
}

.about-copy h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-subcopy {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.about-highlights {
  margin-bottom: 2.5rem;
}

.about-highlight h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

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

.credentials-list li {
  padding: 0.5rem 0;
  line-height: 1.6;
}

.about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* ======================================================
   SECTIONS
   ====================================================== */

.section {
  padding: 4rem 0;
  background: #ffffff;
}

.section-gradient {
  background: #ffffff;
}

.section-colorful {
  background: linear-gradient(135deg, #e0f7fa, #f7fbfd, #fff9f5);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ======================================================
   PROCESS STEPS
   ====================================================== */

.process-like {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1100px;
}

.process-like-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.process-like-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  color: var(--color-primary);
  background: #ffffff;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.process-like-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-like-step p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-like-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ======================================================
   CONCERNS BAND - THREE COLUMN DESIGN
   ====================================================== */

.concerns-band {
  padding: 0;
  background: #5a8ff5;
  color: #ffffff;
}

.concerns-inner {
  max-width: 100%;
  padding: 0;
}

.concerns-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.concerns-left,
.concerns-middle,
.concerns-right {
  padding: 0 2rem;
  position: relative;
}

.concerns-middle::before,
.concerns-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.concerns-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.concerns-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}

.concerns-subhead {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.concerns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.concerns-list li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.concerns-list li::before {
  content: '✓';
  margin-right: 0.65rem;
  opacity: 0.9;
  font-weight: 600;
}

/* Pets we serve section */
.concerns-pets-served {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.concerns-pets-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pet-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.pet-item span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

/* Dark blue bottom bar */
.concerns-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: #2855b8;
}

.concerns-pill {
  font-size: 1.05rem;
  font-weight: 600;
}

.concerns-dot {
  opacity: 0.7;
  font-size: 1rem;
}

/* ======================================================
   PRICING CARDS
   ====================================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

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

.service-card {
  padding: 2rem;
}

.service-card-accent {
  border-color: var(--color-primary);
  border-width: 2px;
  position: relative;
}

.card-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--color-muted);
}

.card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

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

.card-list li {
  padding: 0.6rem 0;
  line-height: 1.5;
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.card-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.card-footer {
  margin-top: auto;
}

/* ======================================================
   QUOTE/TESTIMONIAL BAND
   ====================================================== */

.quote-band {
  padding: 3rem 0 2.5rem;
  background: #2f6fde;
  color: #ffffff;
}

.quote-band-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: -0.5rem;
  margin-top: -1.5rem;
}

.testimonial-track {
  position: relative;
  height: 260px;
  margin-bottom: 0;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: -1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: #ffffff;
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ======================================================
   CHAT
   ====================================================== */

.chat-shell {
  max-width: 700px;
  margin: 0 auto;
}

.chat-window {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.chat-messages {
  padding: 2rem;
  min-height: 320px;
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-msg {
  display: flex;
  gap: 0.75rem;
}

.chat-msg-user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 75%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  line-height: 1.5;
}

.chat-msg-bot .chat-bubble {
  background: var(--color-primary-100);
  color: var(--color-text);
}

.chat-msg-user .chat-bubble {
  background: var(--color-primary);
  color: #ffffff;
}

.chat-input {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.chat-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font: inherit;
  background: #ffffff;
}

.chat-input input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
}

.chat-send {
  flex-shrink: 0;
}

/* ======================================================
   FORMS
   ====================================================== */

.intro-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.feature-list {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.form-box {
  max-width: 560px;
  margin: 3rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font: inherit;
  background: #ffffff;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

/* ======================================================
   FOOTER - SINGLE LINE
   ====================================================== */

.site-footer {
  padding: 2rem 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer-links-inline a {
  color: var(--color-muted);
  transition: opacity 0.2s ease;
}

.footer-links-inline a:hover {
  opacity: 0.7;
}

.footer-sep {
  opacity: 0.5;
  color: var(--color-muted);
  margin: 0 0.25rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer-text {
  white-space: nowrap;
  color: var(--color-muted);
}

.footer-email {
  color: var(--color-muted);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer-email:hover {
  opacity: 0.7;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 880px) {
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .logo {
    margin-right: auto;
    margin-left: 1rem;
  }

  .nav-toggle {
    margin-right: 1rem;
  }

  .process-like {
    flex-direction: column;
    gap: 2rem;
  }

  .process-like-arrow {
    transform: rotate(90deg);
  }

  .concerns-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }

  .concerns-left,
  .concerns-middle,
  .concerns-right {
    padding: 0 1rem;
  }

  .concerns-middle::before,
  .concerns-right::before {
    display: none;
  }

  /* Mobile: pets displayed horizontally */
  .concerns-pets-list {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 1rem;
    width: 100%;
  }

  .pet-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 120px;
  }

  .pet-icon {
    width: 40px;
    height: 40px;
  }

  .pet-item span {
    font-size: 0.85rem;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    order: -1;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }

  .site-nav.nav-open {
    max-height: 400px;
    opacity: 1;
  }

  /* Force all mobile nav links to be dark text */
  .site-nav a:not(.btn) {
    padding: 0.75rem 0;
    color: var(--color-text) !important;
    text-shadow: none !important;
  }

  /* Mobile nav schedule button - no border, dark text, no background */
  .site-nav .btn-schedule {
    background: transparent !important;
    color: var(--color-text) !important;
    border: none !important;
    padding: 0.75rem 0 !important;
    justify-content: flex-start;
    text-shadow: none !important;
    font-weight: 400 !important;
  }

  .site-nav .btn-schedule:hover {
    background: transparent !important;
    color: var(--color-primary) !important;
  }

  /* Override header-always-white styles for mobile menu on about/practices pages */
  .site-header.header-always-white .site-nav .btn-schedule {
    background: transparent !important;
    color: var(--color-text) !important;
    border: none !important;
    font-weight: 400 !important;
  }

  .site-header.header-always-white .site-nav .btn-schedule:hover {
    background: transparent !important;
    color: var(--color-primary) !important;
    border: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links-inline {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-sep {
    display: none;
  }

  .footer-logo {
    height: 32px;
  }
}

@media (max-width: 720px) {
  .hero-with-image h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    height: 400px;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }

  .concerns-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }

  .concerns-dot {
    display: none;
  }
}




/* ======================================================
   CHAT WINDOW FIXED HEIGHT (no expansion)
   ====================================================== */

.chat-window {
  height: 520px;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  min-height: 0; /* allows proper flex scrolling */
  max-height: none;
  overflow-y: auto;
}

/* ======================================================
   CHAT ACTIONS (Path A: Calendly + Stripe links)
   ====================================================== */

.chat-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.5rem 1.25rem 0; /* moved up slightly */
  background: #ffffff;
  border-top: none; /* remove thin line */
}

.chat-actions .btn {
  border-width: 2px;
}

/* ======================================================
   CHAT ACTION POSITION TWEAK
   ====================================================== */

.chat-actions {
  padding: 0.35rem 1.25rem 0.25rem;
  border-top: none;
}

.chat-input {
  padding-top: 0.75rem;
}

/* ======================================================
   ANIMALS WE SUPPORT
   ====================================================== */

.concerns-supported {
  text-align: center;
}

.concerns-supported-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.concerns-supported-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.supported-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.supported-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
