/* ═══════════════════════════════════════════════════════
   WESTLANDS PAWS — Main Stylesheet
   No framework. Pure CSS with custom properties.
═══════════════════════════════════════════════════════ */

/* ── Google Fonts (loaded in HTML) ── */

/* ── Custom Properties ── */
:root {
  --red:        #E31E24;
  --red-10:     rgba(227,30,36,0.10);
  --red-15:     rgba(227,30,36,0.15);
  --red-20:     rgba(227,30,36,0.20);
  --black:      #0D0D0D;
  --white:      #FFFFFF;
  --offwhite:   #F9F9F9;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --gray-800:   #1F2937;
  --gray-900:   #111827;
  --gray-950:   #0A0F1A;
  --green-wa:   #25D366;
  --green-wa-d: #1eb859;
  --border:     rgba(0,0,0,0.08);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 24px rgba(227,30,36,0.30);
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  40px;
  --r-full: 999px;
  --font-sans:   'Plus Jakarta Sans', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --transition: 0.22s ease;
}

/* ── Dark Mode ── */
html.dark {
  --white:    #0A0F1A;
  --offwhite: #111827;
  --gray-50:  #1F2937;
  --gray-100: #1F2937;
  --gray-200: #374151;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #D1D5DB;
  --gray-800: #E5E7EB;
  --gray-900: #F9FAFB;
  --gray-950: #F9FAFB;
  --border:   rgba(255,255,255,0.08);
  --black:    #F9FAFB;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--red-10); color: var(--red); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red-20); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ── Focus ── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ── Page entry animation ── */
main { animation: fadeUp 0.35s ease; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blob {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%     { border-radius: 40% 60% 45% 55% / 65% 35% 65% 35%; }
  66%     { border-radius: 55% 45% 65% 35% / 45% 55% 35% 65%; }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.8); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes waPing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 5rem; } }
@media (min-width: 1536px) { .container { padding: 0 7rem; } }
@media (min-width: 1920px) { .container { padding: 0 10rem; } }

.section-pad { padding: 3.5rem 0; }
@media (min-width: 768px)  { .section-pad { padding: 5rem 0; } }
@media (min-width: 1024px) { .section-pad { padding: 6.5rem 0; } }
@media (min-width: 1536px) { .section-pad { padding: 8rem 0; } }
@media (min-width: 1920px) { .section-pad { padding: 10rem 0; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (min-width: 1024px) { .grid-2 { gap: 5rem; } }
@media (min-width: 1536px) { .grid-2 { gap: 7rem; } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1536px) { .grid-3 { gap: 2rem; } }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 480px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1536px) { .grid-4 { gap: 2rem; } }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start { display: flex; align-items: center; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--black);
}
.section-sub {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: var(--gray-500);
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-red { color: var(--red); }
.script { font-family: var(--font-script); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: var(--r-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  min-height: 52px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  padding: 0.85rem 1.9rem;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(227,30,36,0.40); }

.btn-outline {
  background: transparent;
  color: var(--black);
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  min-height: 52px;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  min-height: 52px;
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.20); }

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.50);
  min-height: 52px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; }

.btn-wa {
  background: var(--green-wa);
  color: #fff;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  min-height: 52px;
}
.btn-wa:hover { background: var(--green-wa-d); }

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.88rem; min-height: 42px; }

@media (min-width: 1536px) {
  .btn, .btn-primary, .btn-outline, .btn-white, .btn-ghost, .btn-wa {
    min-height: 58px; padding: 1rem 2.25rem; font-size: 1.05rem;
  }
  .btn-sm { min-height: 46px; padding: 0.6rem 1.4rem; font-size: 0.9rem; }
}
@media (min-width: 1920px) {
  .btn, .btn-primary, .btn-outline, .btn-white, .btn-ghost, .btn-wa {
    min-height: 64px; padding: 1.1rem 2.5rem; font-size: 1.1rem;
  }
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.card:hover.card-accent::before { transform: scaleX(1); }

/* ─────────────────────────────────────────
   EMERGENCY BAR
───────────────────────────────────────── */
#emergencyBar {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}
#emergencyBar a { color: #fff; font-weight: 700; }
#emergencyBar a:hover { text-decoration: underline; }
.pulse-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.4s ease-in-out infinite;
  margin-right: 4px;
}
.ebar-close {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.ebar-close:hover { background: rgba(255,255,255,0.35); }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
html.dark header { background: rgba(10,15,26,0.97); }
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 0.75rem;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
}
@media (min-width: 640px)  { .header-inner { padding: 0.5rem 2rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0.5rem 3.5rem; min-height: 88px; } }
@media (min-width: 1280px) { .header-inner { padding: 0.5rem 5rem;   min-height: 92px; } }
@media (min-width: 1536px) { .header-inner { padding: 0.5rem 7rem;   min-height: 100px; } }
@media (min-width: 1920px) { .header-inner { padding: 0.5rem 10rem;  min-height: 110px; } }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 0.5rem; margin-right: 0.5rem; flex-shrink: 0; }
.logo-img {
  height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transition: transform var(--transition);
}
@media (min-width: 640px)  { .logo-img { height: 64px;  max-width: 180px; } }
@media (min-width: 1024px) { .logo-img { height: 72px;  max-width: 200px; } }
@media (min-width: 1280px) { .logo-img { height: 80px;  max-width: 220px; } }
@media (min-width: 1536px) { .logo-img { height: 88px;  max-width: 240px; } }
@media (min-width: 1920px) { .logo-img { height: 100px; max-width: 270px; } }
.logo-img:hover { transform: scale(1.04); }
.logo-text { display: none; }
@media (min-width: 480px) { .logo-text { display: block; line-height: 1.2; } }
.logo-text .brand  { font-size: 0.9rem; font-weight: 800; }
.logo-text .brand span { color: var(--red); }
.logo-text .tagline { font-family: var(--font-script); font-size: 0.72rem; color: var(--red); }

/* Desktop nav */
nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) { nav.desktop-nav { display: flex; } }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  opacity: 0.8;
  transition: all var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { opacity: 1; background: var(--red-10); color: var(--red); }
.nav-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Services dropdown */
.dropdown-wrap { position: relative; }
.dropdown-btn { background: none; border: none; }
.dropdown-chevron { transition: transform var(--transition); }
.dropdown-wrap.open .dropdown-chevron { transform: rotate(180deg); }

.mega-drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  width: 460px;
  box-shadow: var(--shadow-xl);
  z-index: 200;
  animation: fadeUp 0.2s ease;
}
.dropdown-wrap.open .mega-drop { display: block; }
.mega-drop .eyebrow { margin-bottom: 0.75rem; padding: 0 0.25rem; }
.drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.drop-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 14px;
  transition: background var(--transition);
}
.drop-item:hover { background: var(--red-10); }
.drop-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--red-10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.drop-icon svg { width: 15px; height: 15px; }
.drop-label { font-size: 0.82rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.drop-sub   { font-size: 0.72rem; color: var(--gray-500); line-height: 1.4; }
.drop-footer {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.drop-all {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; font-weight: 700; color: var(--red);
  background: var(--red-10);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  transition: background var(--transition);
}
.drop-all:hover { background: var(--red-15); }

/* Badge */
.nav-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--r-full);
}

/* Header right */
.header-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; margin-left: auto; }

.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.icon-btn:hover { color: var(--red); background: var(--red-10); }
.icon-btn svg { width: 15px; height: 15px; }

.book-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-full);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(227,30,36,0.28);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.book-btn:hover { box-shadow: 0 6px 20px rgba(227,30,36,0.42); transform: translateY(-1px); }
.book-btn svg { width: 14px; height: 14px; }
@media (min-width: 768px)  { .book-btn { display: flex; } }

.hamburger {
  display: flex;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  align-items: center; justify-content: center;
  color: var(--gray-700);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-200); }
.hamburger svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* ─────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────── */
.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 149;
}
.drawer-overlay.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(85vw, 340px);
  background: var(--white);
  z-index: 150;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.drawer-logo { display: flex; align-items: center; gap: 0.6rem; }
.drawer-logo img { height: 60px; width: auto; max-width: 170px; border-radius: 0; background: transparent; padding: 0; object-fit: contain; }
.drawer-logo .brand  { font-size: 0.85rem; font-weight: 800; color: var(--black); }
.drawer-logo .brand span { color: var(--red); }
.drawer-logo .tag { font-family: var(--font-script); font-size: 0.7rem; color: var(--red); }

.drawer-nav { flex: 1; padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; }

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.drawer-link:hover, .drawer-link.active { background: var(--red-10); color: var(--red); }
.drawer-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.drawer-link-sub { display: flex; flex-direction: column; gap: 0.15rem; padding-left: 2.75rem; overflow: hidden; transition: max-height 0.3s ease; max-height: 0; }
.drawer-link-sub.open { max-height: 300px; }
.drawer-sub-item {
  padding: 0.55rem 0.75rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 1px solid var(--border);
  display: block;
  cursor: pointer;
  transition: color var(--transition);
}
.drawer-sub-item:last-child { border-bottom: none; }
.drawer-sub-item:hover { color: var(--red); }

.theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--gray-50);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gray-700);
}
.theme-toggle-pill {
  width: 48px; height: 24px;
  border-radius: var(--r-full);
  background: var(--gray-200);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.theme-toggle-pill.on { background: var(--red); }
.theme-toggle-pill::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.theme-toggle-pill.on::after { transform: translateX(24px); }

.drawer-footer { padding: 0.75rem 1rem 2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.65rem; }
.drawer-book-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red); color: #fff;
  padding: 1rem; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 700;
  box-shadow: var(--shadow-red); cursor: pointer; border: none;
  width: 100%;
}
.drawer-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--red);
  padding: 0.85rem; border-radius: var(--r-full);
  font-size: 0.87rem; font-weight: 700;
  border: 2px solid var(--red-20); cursor: pointer;
  width: 100%; transition: background var(--transition);
}
.drawer-call-btn:hover { background: var(--red-10); }

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */
.hero-section {
  padding: 4rem 0 3rem;
  background: var(--white);
}
@media (min-width: 1024px) { .hero-section { padding: 6rem 0 5rem; } }
@media (min-width: 1536px) { .hero-section { padding: 8rem 0 7rem; } }
@media (min-width: 1920px) { .hero-section { padding: 10rem 0 9rem; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1536px) {
  .hero-grid { gap: 6rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-10);
  border: 1px solid var(--red-20);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero-badge svg { width: 13px; height: 13px; }

.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.1rem;
}
.hero-h1 em { color: var(--red); font-style: normal; }
.hero-desc { font-size: clamp(1rem, 1.1vw, 1.25rem); color: var(--gray-500); line-height: 1.75; margin-bottom: 1.75rem; max-width: 580px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
@media (max-width: 479px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 380px; }
@media (min-width: 480px) { .hero-stats { grid-template-columns: repeat(4, auto); max-width: none; gap: 1.5rem; } }
@media (min-width: 1536px) { .hero-stats { gap: 2.5rem; } }
.stat-num { font-size: clamp(1.75rem, 2vw, 2.5rem); font-weight: 800; color: var(--black); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-lbl { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-400); margin-top: 0.2rem; }
@media (min-width: 1536px) { .stat-lbl { font-size: .78rem; } }

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  transition: color var(--transition);
}
.hero-location:hover { color: var(--red); }
.hero-location svg { width: 12px; height: 12px; color: var(--red); flex-shrink: 0; }

/* Blob visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}
@media (min-width: 1024px) { .hero-visual { order: 1; } }

.blob-wrap {
  position: relative;
  width: min(320px, 85vw);
  height: min(320px, 85vw);
}
@media (min-width: 480px)  { .blob-wrap { width: min(380px, 90vw); height: min(380px, 90vw); } }
@media (min-width: 640px)  { .blob-wrap { width: 400px; height: 400px; } }
@media (min-width: 1024px) { .blob-wrap { width: 460px; height: 460px; } }
@media (min-width: 1280px) { .blob-wrap { width: 520px; height: 520px; } }
@media (min-width: 1536px) { .blob-wrap { width: 580px; height: 580px; } }
@media (min-width: 1920px) { .blob-wrap { width: 660px; height: 660px; } }

.blob-bg1 {
  position: absolute; inset: 0;
  background: var(--red-10);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blob 8s ease-in-out infinite;
}
.blob-bg2 {
  position: absolute; inset: 20px;
  background: rgba(227,30,36,0.04);
  border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%;
  animation: blob 11s ease-in-out infinite reverse;
}
.blob-img {
  position: absolute;
  inset: 28px;
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}
.blob-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.blob-img:hover img { transform: scale(1.04); }

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 0.7rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.float-card.c1 { bottom: 40px; left: -10px; animation: floatY 3s ease-in-out infinite; }
.float-card.c2 { top: 50px; right: -10px; animation: floatY 3s ease-in-out infinite 1.5s; }
@media (max-width: 479px) { .float-card.c2 { display: none; } }
.float-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-icon.green { background: #D1FAE5; color: #065F46; }
.float-icon.red   { background: var(--red-10); color: var(--red); }
.float-icon svg   { width: 16px; height: 16px; }
.float-lbl { font-size: 0.68rem; color: var(--gray-400); font-weight: 500; margin-bottom: 2px; }
.float-val { font-size: 0.82rem; font-weight: 800; color: var(--black); }

/* Services Strip */
.bg-offwhite { background: var(--offwhite); }
.bg-white    { background: var(--white); }

.svc-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--red-10);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.card:hover .svc-icon { background: var(--red-15); }
.card h3 { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 0.6rem; }
.card p  { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; font-weight: 700; color: var(--red);
}
.svc-link:hover { text-decoration: underline; }
.svc-link svg { width: 13px; height: 13px; }

/* Why-img: hidden on mobile, shown on desktop */
.why-img-wrap { position: relative; display: none; }
@media (min-width: 768px) { .why-img-wrap { display: block; } }
.why-main { width: 100%; aspect-ratio: 4/5; border-radius: var(--r-xl); object-fit: cover; object-position: top; }
.why-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 47%; aspect-ratio: 1;
  border-radius: 28px; object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute; top: 28px; right: -22px;
  background: var(--red); color: #fff;
  border-radius: 18px; padding: 0.85rem 1.1rem;
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(227,30,36,0.40);
}
.why-badge .big { font-size: 1.9rem; font-weight: 800; display: block; line-height: 1; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.93rem; color: var(--black); font-weight: 500; }
.check-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-dot svg { width: 12px; height: 12px; color: #fff; }

/* Testimonials */
.stars { color: var(--red); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.93rem; color: var(--black); line-height: 1.72; font-weight: 500; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.87rem; color: var(--black); }
.testi-pet  { font-size: 0.75rem; color: var(--gray-400); }

/* Vets */
.vet-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--offwhite);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vet-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.vet-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.vet-card:hover .vet-img-wrap img { transform: scale(1.04); }
.vet-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  border-radius: var(--r-full); padding: 5px 12px;
  font-size: 0.72rem; font-weight: 700; color: var(--red);
}
.vet-info { padding: 1.1rem 1.25rem; }
.vet-info h3 { font-size: 1rem; font-weight: 800; color: var(--black); }
.vet-info p  { font-size: 0.8rem; color: var(--gray-500); margin-top: 2px; }

/* Location strip */
.loc-card {
  background: var(--white);
  border-radius: 26px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.loc-icon {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--red-10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-icon svg { width: 20px; height: 20px; color: var(--red); }
.loc-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--black); margin-bottom: 0.3rem; }
.loc-card p, .loc-card address { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; font-style: normal; }
.loc-link { font-size: 0.82rem; font-weight: 700; color: var(--red); margin-top: 0.4rem; display: inline-block; }

/* CTA band */
.cta-band {
  background: var(--red);
  padding: 4.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { font-size: clamp(1.6rem,3.5vw,2.9rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 0.75rem; position: relative; }
.cta-band p  { color: rgba(255,255,255,0.80); font-size: 1rem; margin-bottom: 2rem; position: relative; }
.cta-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; position: relative; }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.milestone-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .milestone-bar { grid-template-columns: repeat(5, 1fr); } }
.milestone-item {
  padding: 1.75rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.milestone-item:hover { background: var(--red-10); }
.milestone-num { font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.milestone-desc { font-size: 0.8rem; font-weight: 600; color: var(--gray-500); margin-top: 0.35rem; }

.value-card {
  background: var(--offwhite);
  border-radius: 26px;
  padding: 1.85rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--red-10); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 1.4rem; }
.value-card h3 { font-size: 0.97rem; font-weight: 800; color: var(--black); margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

.team-photo { width: 100%; aspect-ratio: 1; border-radius: 26px; object-fit: cover; object-position: top; transition: transform 0.4s; }
.team-member:hover .team-photo { transform: scale(1.03); }
.team-member { text-align: center; overflow: hidden; }
.team-member h3   { font-size: 0.93rem; font-weight: 800; color: var(--black); margin-top: 0.85rem; }
.team-member .role { font-size: 0.8rem; font-weight: 600; color: var(--red); margin-top: 2px; }
.team-member .exp  { font-size: 0.72rem; color: var(--gray-400); }

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.svc-full-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-full-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.4s; }
.svc-full-card:hover .svc-full-img { transform: scale(1.04); }
.svc-body { padding: 1.75rem; }
.svc-price-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--red-10); border: 1px solid var(--red-20);
  border-radius: var(--r-full); padding: 4px 12px;
  font-size: 0.72rem; font-weight: 700; color: var(--red);
  margin-bottom: 0.9rem;
}
.svc-features { margin: 0.75rem 0 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--black); font-weight: 500; }
.svc-features li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

.step-card { text-align: center; padding: 1.75rem 1.25rem; background: var(--offwhite); border-radius: 26px; }
.step-num { width: 46px; height: 46px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 1rem; }
.step-card h4 { font-size: 0.93rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

/* FAQ */
.faq-item { background: var(--offwhite); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 0.65rem; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  text-align: left; padding: 1.1rem 1.25rem;
  font-family: var(--font-sans); font-size: 0.93rem; font-weight: 700;
  color: var(--black); background: none; border: none; cursor: pointer; gap: 1rem;
}
.faq-q svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; font-size: 0.87rem; color: var(--gray-500); line-height: 1.7; padding: 0 1.25rem; }
.faq-a.open { max-height: 250px; padding: 0 1.25rem 1.1rem; }

/* ─────────────────────────────────────────
   BLOG PAGE
───────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.filter-btn {
  padding: 0.5rem 1.1rem; border-radius: var(--r-full);
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-700);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

.blog-feat-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .blog-feat-grid { grid-template-columns: 2fr 1fr; } }
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-body { padding: 1.25rem; }
.blog-cat { display: inline-block; background: var(--red-10); color: var(--red); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-body h3 { font-size: 0.97rem; font-weight: 800; line-height: 1.35; color: var(--black); margin-bottom: 0.5rem; }
.blog-body p  { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 0.75rem; }
.blog-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--gray-400); }
.blog-meta img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.blog-meta span.dot { opacity: 0.4; }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.hidden-post { display: none; }

/* ── Pet Photo Carousel (replaces newsletter band) ── */
.pet-carousel-band {
  background: var(--gray-900);
  padding: 4.5rem 0;
  overflow: hidden;
  position: relative;
}
html.dark .pet-carousel-band { background: #000; }

.pet-carousel-band .carousel-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}
.pet-carousel-band .carousel-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.pet-carousel-band .carousel-header h2 span { color: var(--red); }
.pet-carousel-band .carousel-header p {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
}

/* Track wrapper — clips overflow */
.carousel-viewport {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
}
.carousel-viewport:active { cursor: grabbing; }

/* The sliding track */
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 1.5rem;
}

/* Each slide */
.carousel-slide {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
}
@media (max-width: 1023px) {
  .carousel-slide { flex: 0 0 calc(50% - 0.625rem); }
}
@media (max-width: 639px) {
  .carousel-slide { flex: 0 0 calc(85% - 0.625rem); }
}

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.carousel-slide:hover img { transform: scale(1.05); }

/* Caption overlay */
.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 1.75rem 1.25rem 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-slide:hover .carousel-caption { opacity: 1; }

/* Nav buttons */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 1.5rem;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}
.carousel-btn svg { width: 18px; height: 18px; }

/* Dot indicators */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

@media (min-width: 1536px) {
  .carousel-slide { flex: 0 0 calc(25% - 0.94rem); }
  .pet-carousel-band { padding: 6rem 0; }
}
@media (min-width: 1920px) {
  .carousel-slide { flex: 0 0 calc(20% - 1rem); }
  .pet-carousel-band { padding: 8rem 0; }
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 42px; height: 42px; border-radius: 13px; background: var(--red-10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 17px; height: 17px; color: var(--red); }
.contact-detail h4 { font-size: 0.87rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; }
.hours-table { width: 100%; font-size: 0.87rem; border-collapse: collapse; }
.hours-table td { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { color: var(--gray-500); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--black); }
.hours-table tr:last-child td:last-child { color: var(--red); }

/* Form */
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
@media (min-width: 640px) { .form-card { padding: 2.5rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--gray-800); }
.form-input {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.87rem;
  color: var(--black);
  background: var(--offwhite);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-input:focus { border-color: rgba(227,30,36,0.45); box-shadow: 0 0 0 3px rgba(227,30,36,0.09); background: var(--white); }
textarea.form-input { resize: vertical; min-height: 110px; line-height: 1.6; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2rem; }
.wa-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green-wa); color: #fff;
  padding: 1rem; border-radius: var(--r-full);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: none; margin-top: 0.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.wa-submit:hover { background: var(--green-wa-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.38); }
.wa-submit svg { width: 18px; height: 18px; }
.wa-submit.loading .spinner { display: block; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
.wa-hint { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--gray-400); margin-bottom: 1.25rem; }
.wa-hint svg { width: 12px; height: 12px; }

.form-success {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #dcf8c6;
  border: 1px solid #86efac;
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.87rem;
}
html.dark .form-success { background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.3); }
.form-success.show { display: flex; }
.form-success .fs-title { font-weight: 700; color: #15803d; }
html.dark .form-success .fs-title { color: #4ade80; }
.form-success .fs-body { color: #166534; font-size: 0.82rem; }
html.dark .form-success .fs-body { color: #86efac; }

.map-embed { width: 100%; height: clamp(300px, 40vw, 580px); border-radius: var(--r-xl); border: none; display: block; }

/* ─────────────────────────────────────────
   WHATSAPP FLOATING BUTTON
───────────────────────────────────────── */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.wa-float-btn {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: background var(--transition), transform var(--transition);
}
.wa-float-btn:hover { background: var(--green-wa-d); transform: scale(1.08); }
.wa-float-btn svg { width: 28px; height: 28px; }
.wa-ring {
  position: absolute; inset: -1px;
  border-radius: 50%;
  background: var(--green-wa);
  opacity: 0.35;
  animation: waPing 2.2s ease-out infinite;
}
.wa-ring2 {
  position: absolute; inset: -1px;
  border-radius: 50%;
  background: var(--green-wa);
  opacity: 0.2;
  animation: waPing 2.2s ease-out infinite 0.65s;
}
.wa-float-btn.open .wa-ring,
.wa-float-btn.open .wa-ring2 { display: none; }

.wa-chat-card {
  display: none;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  width: 270px;
  overflow: hidden;
  animation: fadeUp 0.2s ease;
}
.wa-chat-card.open { display: block; }
.wa-chat-head { padding: 0.85rem 1rem; background: var(--green-wa); display: flex; align-items: center; gap: 0.65rem; }
.wa-chat-head .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulseDot 1.4s infinite; }
.wa-chat-name { font-size: 0.87rem; font-weight: 700; color: #fff; }
.wa-chat-status { font-size: 0.68rem; color: rgba(255,255,255,0.85); }
.wa-bubble { margin: 0.85rem; background: #dcf8c6; border-radius: 12px 12px 12px 2px; padding: 0.65rem 0.85rem; }
html.dark .wa-bubble { background: rgba(37,211,102,0.12); }
.wa-bubble p { font-size: 0.82rem; color: var(--black); line-height: 1.55; }
.wa-bubble .wa-time { font-size: 0.65rem; color: var(--gray-400); margin-top: 4px; text-align: right; }
.wa-actions { padding: 0 0.85rem 0.85rem; display: flex; flex-direction: column; gap: 0.5rem; }
.wa-actions a {
  display: flex; align-items: center; justify-content: center;
  padding: 0.6rem; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700; color: #fff;
  transition: filter var(--transition);
}
.wa-actions a:hover { filter: brightness(1.1); }
.wa-actions .wa-book { background: var(--green-wa); }
.wa-actions .wa-emergency { background: var(--red); }
.wa-actions .wa-call { background: transparent; border: 1.5px solid var(--border); color: var(--black); font-size: 0.78rem; }

/* ─────────────────────────────────────────
   VACCINE CALCULATOR MODAL
───────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
@media (min-width: 640px) { .modal-overlay { align-items: center; padding: 1rem; } }
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: 28px 28px 0 0;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideIn 0.3s ease;
}
@media (min-width: 640px) { .modal-box { border-radius: 28px; } }
.modal-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.modal-title-wrap { display: flex; align-items: center; gap: 0.75rem; }
.modal-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--red-10); display: flex; align-items: center; justify-content: center; }
.modal-icon svg { width: 20px; height: 20px; color: var(--red); }
.modal-title { font-size: 1.05rem; font-weight: 800; color: var(--black); }
.modal-sub   { font-size: 0.72rem; color: var(--gray-400); }
.modal-close { width: 34px; height: 34px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; color: var(--gray-500); transition: all var(--transition); }
.modal-close:hover { background: var(--gray-200); color: var(--black); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body { overflow-y: auto; flex: 1; padding: 1.25rem 1.5rem; }

.pet-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-bottom: 1.1rem; }
.pet-btn {
  padding: 0.85rem; border-radius: 14px;
  border: 2px solid var(--gray-200);
  background: var(--white); cursor: pointer;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  color: var(--gray-500); transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.pet-btn.active { border-color: var(--red); background: var(--red-10); color: var(--red); }

.calc-form { display: flex; flex-direction: column; gap: 0.85rem; }
.calc-label { font-size: 0.82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.3rem; display: block; }

.calc-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red); color: #fff;
  padding: 0.95rem; border-radius: var(--r-full);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: none; margin-top: 0.5rem;
  box-shadow: var(--shadow-red); transition: all var(--transition);
}
.calc-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(227,30,36,0.40); }
.calc-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.calc-submit svg { width: 16px; height: 16px; }

/* Results */
.calc-results { display: none; }
.calc-results.show { display: block; }

.pet-summary {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--red-10); border-radius: 16px; padding: 0.85rem;
  margin-bottom: 1rem;
}
.pet-emoji { font-size: 2rem; }
.pet-summary h3 { font-size: 0.97rem; font-weight: 800; color: var(--black); }
.pet-summary p  { font-size: 0.75rem; color: var(--gray-400); margin-top: 2px; }
.pet-summary .reset-btn { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: var(--red); background: var(--red-10); padding: 4px 12px; border-radius: var(--r-full); cursor: pointer; border: none; white-space: nowrap; transition: background var(--transition); }
.pet-summary .reset-btn:hover { background: var(--red-15); }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin-bottom: 1rem; }
.stat-pill { border-radius: 14px; padding: 0.7rem; text-align: center; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.stat-pill .sp-num { font-size: 1.5rem; font-weight: 800; }
.stat-pill .sp-lbl { font-size: 0.68rem; font-weight: 600; color: var(--gray-400); margin-top: 2px; }
.stat-pill.overdue  { background: #fef2f2; } .stat-pill.overdue  .sp-num { color: #dc2626; }
.stat-pill.due-soon { background: #fffbeb; } .stat-pill.due-soon .sp-num { color: #d97706; }
.stat-pill.upcoming { background: #f0fdf4; } .stat-pill.upcoming .sp-num { color: #16a34a; }
html.dark .stat-pill.overdue  { background: rgba(220,38,38,0.12); }
html.dark .stat-pill.due-soon { background: rgba(217,119,6,0.12); }
html.dark .stat-pill.upcoming { background: rgba(22,163,74,0.12); }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.ftab { padding: 0.35rem 0.85rem; border-radius: var(--r-full); font-size: 0.75rem; font-weight: 700; cursor: pointer; background: var(--gray-100); color: var(--gray-600); border: none; transition: all var(--transition); }
.ftab.active { background: var(--red); color: #fff; }

.schedule-list { display: flex; flex-direction: column; gap: 0.6rem; }
.sched-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
}
.sched-icon { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sched-icon svg { width: 14px; height: 14px; }
.sched-icon.overdue  { background: #fef2f2; color: #dc2626; }
.sched-icon.due-now  { background: #fff7ed; color: #ea580c; }
.sched-icon.due-soon { background: #fffbeb; color: #d97706; }
.sched-icon.upcoming { background: #f0fdf4; color: #16a34a; }
.sched-name { font-size: 0.87rem; font-weight: 800; color: var(--black); }
.sched-severity { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); margin-left: 6px; }
.sev-core      { background: #fef2f2; color: #dc2626; }
.sev-lifestyle { background: #fffbeb; color: #d97706; }
.sev-preventive{ background: #f0fdf4; color: #16a34a; }
html.dark .sev-core       { background: rgba(220,38,38,0.15); color: #fca5a5; }
html.dark .sev-lifestyle  { background: rgba(217,119,6,0.15); color: #fcd34d; }
html.dark .sev-preventive { background: rgba(22,163,74,0.15); color: #86efac; }
.sched-protects { font-size: 0.72rem; color: var(--gray-400); margin-top: 1px; }
.sched-notes    { font-size: 0.75rem; color: var(--gray-500); margin-top: 3px; line-height: 1.5; }
.sched-date { text-align: right; flex-shrink: 0; }
.sched-date .d { font-size: 0.82rem; font-weight: 700; color: var(--black); }
.sched-date .l { font-size: 0.68rem; font-weight: 600; margin-top: 2px; }
.sched-date .l.overdue  { color: #dc2626; }
.sched-date .l.due-now  { color: #ea580c; }
.sched-date .l.due-soon { color: #d97706; }
.sched-date .l.upcoming { color: #16a34a; }

.calc-book-cta { background: var(--red); border-radius: 16px; padding: 1.1rem; text-align: center; margin-top: 1rem; }
.calc-book-cta p { color: rgba(255,255,255,0.85); font-size: 0.82rem; margin-top: 4px; }
.calc-book-cta h4 { color: #fff; font-weight: 800; font-size: 1rem; }
.calc-book-cta a { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--red); padding: 0.55rem 1.25rem; border-radius: var(--r-full); font-size: 0.82rem; font-weight: 700; margin-top: 0.75rem; transition: box-shadow var(--transition); }
.calc-book-cta a:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.15); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--gray-950);
  color: #fff;
  padding: 4rem 0 2rem;
}
html.dark footer { background: #000; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { height: 70px; width: auto; max-width: 200px; border-radius: 0; background: transparent; padding: 0; object-fit: contain; }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-brand-name span { color: var(--red); }
.footer-script { font-family: var(--font-script); font-size: 1.3rem; color: rgba(227,30,36,0.82); display: block; line-height: 1; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 1.25rem; max-width: 280px; }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; transition: color var(--transition); }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { width: 13px; height: 13px; color: var(--red); flex-shrink: 0; }

.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.32); margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.50); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li.emergency a { color: var(--red); font-weight: 700; }

.footer-emergency { background: rgba(227,30,36,0.10); border: 1px solid rgba(227,30,36,0.20); border-radius: 14px; padding: 0.85rem; margin-top: 1.25rem; }
.footer-emergency .lbl { font-size: 0.68rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-emergency .num { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-emergency .note { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.42); transition: all var(--transition); }
.social-btn:hover { border-color: rgba(227,30,36,0.45); color: var(--red); background: var(--red-10); }
.social-btn svg { width: 14px; height: 14px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.28); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* ─────────────────────────────────────────
   RESPONSIVE UTILITIES
───────────────────────────────────────── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 1024px) { .hide-desktop { display: none; } }

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }


/* logo — transparent, no background ever */
.logo-img { background: transparent; box-shadow: none; padding: 0; border-radius: 0; }

/* ── Breadcrumbs ── */
.breadcrumb-bar {
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
  font-size: .78rem;
}
.breadcrumb-bar .container { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb-bar a { color: var(--gray-500); text-decoration: none; font-weight: 500; }
.breadcrumb-bar a:hover { color: var(--red); }
.breadcrumb-bar .bc-sep { color: var(--gray-300); font-size: .7rem; }
.breadcrumb-bar .bc-current { color: var(--black); font-weight: 600; }

/* ── Letter avatars (testimonials & team) ── */
.letter-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.letter-avatar-lg {
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg,#E31E24 0%,#b91c1c 100%);
  color: #fff; font-size: clamp(2.5rem,8vw,4rem); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  text-transform: uppercase; letter-spacing: -0.02em;
}
.letter-avatar-lg.green  { background: linear-gradient(135deg,#16a34a,#15803d); }
.letter-avatar-lg.blue   { background: linear-gradient(135deg,#2563eb,#1d4ed8); }
.letter-avatar-lg.amber  { background: linear-gradient(135deg,#d97706,#b45309); }
.letter-avatar-lg.purple { background: linear-gradient(135deg,#7c3aed,#6d28d9); }

/* ── Blog share buttons ── */
.share-bar { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.share-bar h4 { font-size: .85rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .85rem; }
.share-btns { display: flex; flex-wrap: wrap; gap: .6rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  text-decoration: none; transition: opacity .2s, transform .15s;
  border: none; cursor: pointer;
}
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.share-btn.wa  { background: #25D366; color: #fff; }
.share-btn.fb  { background: #1877F2; color: #fff; }
.share-btn.tw  { background: #000;    color: #fff; }
.share-btn.li  { background: #0A66C2; color: #fff; }
.share-btn.copy{ background: var(--red-10); color: var(--red); border: 1px solid var(--red-20); }

/* ═══════════════════════════════════════════════════════
   FULL RESPONSIVE SYSTEM — Mobile → 4K
   320px | 480px | 640px | 768px | 1024px | 1280px | 1536px | 1920px
═══════════════════════════════════════════════════════ */

/* ── Mobile (≤479px): stack CTAs and form rows ── */
@media (max-width: 479px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .share-btns { flex-direction: column; }
  .share-btn { justify-content: center; }
}

/* ── Small phones: tighter cards ── */
@media (max-width: 360px) {
  .card { padding: 1.25rem 1rem; }
  .section-pad { padding: 2.5rem 0; }
  .hero-h1 { font-size: 1.8rem; }
}

/* ── Tablet (640–1023px): 2-col service grid ── */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .blob-wrap { width: 340px; height: 340px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Large desktop (1536px+) ── */
@media (min-width: 1536px) {
  body { font-size: 17px; }
  .eyebrow { font-size: .82rem; }
  .card { padding: 2.5rem 2.25rem; border-radius: 48px; }
  .card-accent { border-radius: 48px; }
  .svc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .nav-link { font-size: 1.05rem; padding: .9rem 1.35rem; }
  .book-btn { padding: .9rem 1.75rem; font-size: 1rem; min-height: 54px; }
  /* logo sizes handled in base rules above */
  .brand { font-size: 1.05rem !important; }
  .tagline { font-size: .8rem !important; }
  .milestone-num { font-size: 2.8rem; }
  .hero-badge { font-size: .88rem; padding: .5rem 1.25rem; }
  .hero-location { font-size: .9rem; }
  .testi-text { font-size: 1rem; }
  .float-card { padding: .85rem 1.1rem; }
  .vet-info h3 { font-size: 1.1rem; }
  .team-member h3 { font-size: 1.1rem; }
  .footer-col h4 { font-size: 1rem; }
  .footer-col ul li a { font-size: .9rem; }
  .footer-desc { font-size: .9rem; }
  .footer-contact-item { font-size: .9rem; }
  .faq-q { font-size: 1rem; padding: 1.25rem 1.5rem; }
  .step-card { padding: 2.25rem; }
  .svc-full-card .svc-body { padding: 1.75rem; }
  .loc-card { gap: 1.25rem; padding: 2rem; }
  .contact-detail { padding: 1.25rem 0; }
  .blog-body h3 { font-size: 1.05rem; }
  .filter-btn { padding: .55rem 1.25rem; font-size: .88rem; }
  .wa-submit { min-height: 58px; font-size: 1rem; }
  .calc-submit { min-height: 54px; font-size: 1rem; }
  .section-title { letter-spacing: -.035em; }
}

/* ── 4K / Ultrawide (1920px+) ── */
@media (min-width: 1920px) {
  body { font-size: 18px; }
  .card { padding: 3rem 2.75rem; }
  .nav-link { font-size: 1.1rem; padding: 1rem 1.5rem; }
  .book-btn { padding: 1rem 2rem; font-size: 1.05rem; min-height: 60px; }
  /* logo size handled in base rules */
  .brand { font-size: 1.15rem !important; }
  .tagline { font-size: .88rem !important; }
  .float-card { padding: 1rem 1.35rem; min-width: 220px; }
  .float-lbl { font-size: .85rem; }
  .float-val { font-size: 1rem; }
  .milestone-num { font-size: 3.2rem; }
  .milestone-desc { font-size: .9rem; }
  .testi-text { font-size: 1.05rem; line-height: 1.75; }
  .step-num { font-size: 2rem; width: 68px; height: 68px; }
  .footer-emergency .num { font-size: 1.5rem; }
  .hours-table td { font-size: .95rem; }
  .form-input { font-size: 1rem; padding: .85rem 1.1rem; }
  .form-label { font-size: .9rem; }
  .letter-avatar { width: 56px; height: 56px; font-size: 1.35rem; }
  .letter-avatar-lg { font-size: clamp(3rem,6vw,5rem); }
  .share-btn { padding: .65rem 1.35rem; font-size: .88rem; }
  .breadcrumb-bar { padding: .75rem 0; font-size: .88rem; }
  .bc-current { font-size: .88rem; }
  .faq-q { font-size: 1.05rem; }
  .faq-a { font-size: .95rem; }
  .blog-body h3 { font-size: 1.15rem; }
  .blog-meta { font-size: .85rem; }
  .newsletter-form input { font-size: 1rem; padding: .9rem 1.4rem; }
  .newsletter-form button { font-size: 1rem; padding: .9rem 1.5rem; }
}

/* map-embed defined above */

/* ── Mobile drawer full-screen on small phones ── */
@media (max-width: 400px) {
  .mobile-drawer { width: 100vw; }
}

/* form-row responsive handled above */

/* ── CTA band responsive ── */
@media (max-width: 639px) {
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p  { font-size: .9rem; }
  .cta-btns { flex-direction: column; align-items: center; gap: .65rem; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
}
@media (min-width: 1536px) {
  .cta-band h2 { font-size: clamp(2rem,3vw,3.5rem); }
  .cta-band p  { font-size: clamp(1rem,1.1vw,1.2rem); max-width: 700px; }
  .cta-btns { gap: 1.25rem; }
}

/* ── Service cards responsive ── */
@media (max-width: 639px) {
  .svc-full-card { border-radius: var(--r-lg); }
  .svc-full-img { aspect-ratio: 16/9; }
}

/* ── Blog grid mobile ── */
@media (max-width: 639px) {
  .blog-feat-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: .4rem; }
  .filter-btn { font-size: .78rem; padding: .4rem .85rem; }
}

/* ── Hours table mobile ── */
@media (max-width: 479px) {
  .hours-table td { font-size: .82rem; padding: .5rem .4rem; }
}

/* ── Contact grid mobile ── */
@media (max-width: 767px) {
  .contact-detail { gap: .75rem; }
  .contact-icon { width: 36px; height: 36px; }
}

/* ── Milestone bar — scrollable on mobile ── */
@media (max-width: 767px) {
  .milestone-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding-bottom: .5rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .milestone-item { flex-shrink: 0; }
}

/* ── Footer grid mobile ── */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
}

/* why-img-wrap visibility handled above */

/* ── Grooming pricing on mobile ── */
@media (max-width: 639px) {
  .grid-3 .card { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ── WA float — smaller on mobile ── */
@media (max-width: 479px) {
  .wa-float-btn { width: 52px; height: 52px; }
  .wa-chat-card { width: calc(100vw - 2rem); max-width: 340px; right: 1rem; }
}

/* ── Article body text ── */
@media (max-width: 639px) {
  article .container { padding: 0 1.25rem; }
  article h2 { font-size: 1.25rem !important; }
  article h3 { font-size: 1rem !important; }
}
@media (min-width: 1536px) {
  article p { font-size: 1.05rem; line-height: 1.95; }
  article h2 { font-size: 1.7rem !important; }
  article h3 { font-size: 1.25rem !important; }
}

/* ── Team / vet cards ── */
@media (max-width: 479px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   GLOBAL OVERFLOW PROTECTION — prevents horizontal scroll
   on ANY screen size
═══════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ensure nothing bleeds past viewport */
.hero-section,
.hero-grid,
.hero-visual,
.cta-band,
.pet-carousel-band,
footer,
header,
section { max-width: 100%; }

/* Hero visual centering on mobile */
@media (max-width: 1023px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .blob-wrap {
    width: min(320px, 88vw) !important;
    height: min(320px, 88vw) !important;
  }
}

/* Float cards — hide on very small screens to prevent overflow */
@media (max-width: 399px) {
  .float-card { display: none !important; }
}
@media (min-width: 400px) and (max-width: 639px) {
  .float-card.c1 { left: 0; bottom: 10px; }
  .float-card.c2 { display: none; }
  .float-card { font-size: 0.72rem; padding: 0.5rem 0.7rem; }
  .float-icon  { width: 26px; height: 26px; }
}

/* Buttons — never overflow on tiny screens */
.btn { max-width: 100%; box-sizing: border-box; }
@media (max-width: 360px) {
  .btn { font-size: 0.85rem; padding: 0.75rem 1.25rem; min-height: 48px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* Hero text — tight on small phones */
@media (max-width: 480px) {
  .hero-h1    { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero-desc  { font-size: 0.92rem; }
  .hero-badge { font-size: 0.72rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 100%; }
  .stat-num   { font-size: 1.5rem; }
}

/* Section padding — tighter on phones */
@media (max-width: 480px) {
  .section-pad { padding: 2.75rem 0; }
  .cta-band    { padding: 3rem 1rem; }
}

/* Cards — no overflow */
.card, .svc-full-card, .blog-card, .value-card, .step-card {
  max-width: 100%;
  overflow: hidden;
  word-break: break-word;
}

/* Images — always contained */
img { max-width: 100%; height: auto; }
.svc-full-img, .blog-img, .why-main, .why-accent {
  width: 100%;
  display: block;
}

/* Navigation — no overflow */
nav.desktop-nav {
  overflow: visible;
  min-width: 0;
  flex: 1 1 auto;
}
nav.desktop-nav .nav-link {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Desktop nav scaling at large screens */
@media (min-width: 1280px) {
  nav.desktop-nav { gap: 0.2rem; }
  .nav-link { font-size: 0.9rem; padding: 0.6rem 0.9rem; }
}
@media (min-width: 1536px) {
  .nav-link { font-size: 1rem; padding: 0.7rem 1.1rem; }
  .book-btn { padding: 0.8rem 1.6rem; font-size: 0.95rem; min-height: 52px; }
}
@media (min-width: 1920px) {
  .nav-link { font-size: 1.08rem; padding: 0.8rem 1.3rem; }
  .book-btn { padding: 1rem 2rem; font-size: 1.05rem; min-height: 58px; }
}

/* Logo text brand/tagline scaling */
@media (min-width: 768px) {
  .logo-text .brand  { font-size: 1rem; }
  .logo-text .tagline { font-size: 0.75rem; }
}
@media (min-width: 1280px) {
  .logo-text .brand  { font-size: 1.05rem; }
  .logo-text .tagline { font-size: 0.8rem; }
}
@media (min-width: 1920px) {
  .logo-text .brand  { font-size: 1.2rem; }
  .logo-text .tagline { font-size: 0.9rem; }
}

/* Tablet hero — show visual but keep it manageable */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-section { padding: 3.5rem 0 3rem; }
  .hero-grid    { gap: 2rem; }
  .hero-visual  { margin-bottom: 1rem; }
}

/* Grid gutters — safe on all widths */
@media (max-width: 479px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Footer — always readable on mobile */
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 0 1.5rem; }
  .footer-brand { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
}

/* Contact form — always usable */
@media (max-width: 499px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.25rem; }
}

/* Breadcrumb — no overflow */
.breadcrumb-bar { overflow-x: auto; }
.breadcrumb-bar .container { flex-wrap: nowrap; overflow-x: auto; }

/* WA float — bottom-right, contained */
@media (max-width: 479px) {
  .wa-float { bottom: 1rem; right: 1rem; }
  .wa-float-btn { width: 52px; height: 52px; }
  .wa-chat-card { width: calc(100vw - 2rem); max-width: 320px; }
}

/* Modal — full screen bottom sheet on mobile */
@media (max-width: 639px) {
  .modal-box { max-height: 94vh; }
}

/* Carousel — no horizontal bleed */
.pet-carousel-band { overflow: hidden; }
.carousel-viewport  { overflow: hidden; }

/* Typography safety */
@media (max-width: 480px) {
  .section-title { word-break: break-word; }
  .cta-band h2   { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* Table overflow on mobile */
.hours-table { width: 100%; table-layout: fixed; }
@media (max-width: 400px) {
  .hours-table td { font-size: 0.78rem; padding: 0.45rem 0.25rem; }
}
