/* =========================
RESET / BASE
========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1A2A3A;
  background: #F4F7FB;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus-visible {
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* =========================
DESIGN TOKENS
========================== */
:root {
  --color-primary: #1A4D8F;
  --color-primary-dark: #0F396A;
  --color-primary-soft: rgba(26, 77, 143, 0.12);
  --color-accent: #0B776C;
  --color-danger: #DC2626;
  --color-bg: #F4F7FB;
  --color-surface: rgba(255, 255, 255, 0.98);
  --color-surface-soft: rgba(255, 255, 255, 0.94);
  --color-border: rgba(148, 163, 184, 0.35);
  --color-border-strong: rgba(107, 114, 128, 0.6);
  --color-muted: #6B7280;
  --color-footer-bg: #020617;
  --color-footer-text: #CBD5F5;
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-float: 0 18px 45px rgba(15, 23, 42, 0.18);
  --nav-company: #2563eb; /* Trust blue */
  --nav-therapies: #16a34a; /* Clinical green */
  --nav-resources: #7c3aed; /* Knowledge purple */
  --nav-news: #0ea5e9; /* Info cyan */
  --nav-careers: #ea580c; /* Energy orange */
  --nav-partner: #0b776c; /* Business teal */
}
/* =========================
TYPOGRAPHY UTILITIES
========================== */
.font-heading {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.font-body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.text-center { text-align: center; }
.text-center > * {
  margin-left: auto;
  margin-right: auto;
}
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-secondary { color: var(--color-muted); }
.text-footer-light { color: var(--color-footer-text); }
/* =========================
SPACING & LAYOUT UTILITIES
========================== */
.max-w-screen {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 1.75rem);
}
.mx-auto { margin-inline: auto; }
.p-sm { padding: 0.75rem 1.25rem; }
.p-md { padding: 1rem 1.5rem; }
.p-lg { padding: 2rem 1.5rem; }
.p-xl { padding: clamp(2.25rem, 5vw, 3rem) 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
.mt-lg { margin-top: 2rem; }
.mt-md { margin-top: 1.25rem; }
.my-lg { margin-block: 2.5rem; }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }
.grid { display: grid; }
.rounded { border-radius: var(--radius-lg); }
.mr-xs { margin-right: 0.35rem; }
.transition {
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
/* Scrollbar */
.scrollbar-thin {
  scrollbar-width: thin;
}
.scrollbar-thin::-webkit-scrollbar {
  height: 6px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}
/* =========================
HEADER / NAV
========================== */
header.sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1.25rem, 4vw, 1.75rem);
  min-height: 64px;
}
header.sticky.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
header.sticky img {
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.25));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: #1A2A3A;
}
.nav-menu a:focus-visible {
  outline: 2px solid var(--color-primary-soft);
  outline-offset: 3px;
}
/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown > span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dropdown > span::after {
  content: "▾";
  font-size: 0.7rem;
  opacity: 0.7;
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.dropdown.active > span::after {
  transform: rotate(180deg);
  opacity: 1;
}
.dropdown-content {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0.4rem;
  display: none;
  z-index: 40;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}
.dropdown.active .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: dropdown-fade-in 0.28s ease forwards;
}
@keyframes dropdown-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-content a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: #1A2A3A;
}
.dropdown-content a:hover {
  background: var(--color-primary-soft);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
  font-size: 1.4rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #1A2A3A;
  background: #ffffff;
}
.hamburger i {
  font-size: 1.25rem;
  line-height: 1;
}
/* =========================
PRIMARY ACTION STRIP
========================== */
.primary-actions {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.primary-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.primary-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
/* =========================
MARQUEE – FIXED & REFINED
========================== */
.marquee--refined {
  position: relative;
  background: linear-gradient(
    180deg,
    #0f172a 0%,
    #020617 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}
.marquee-viewport {
  max-width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex; /* ❗ NOT inline-flex */
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  animation: marquee-scroll 26s linear infinite;
  width: max-content;
}
.marquee--refined:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(226, 236, 248, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid rgba(26, 77, 143, 0.25);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.marquee-item i {
  font-size: 0.85rem;
  color: var(--color-primary);
  background: rgba(26, 77, 143, 0.12);
  padding: 0.35rem;
  border-radius: 999px;
}
.marquee-item:first-of-type {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f1f5f9
  );
  border: 1px solid rgba(26, 77, 143, 0.35);
  box-shadow:
    0 0 0 1px rgba(26, 77, 143, 0.25),
    0 6px 14px rgba(26, 77, 143, 0.25);
}
.marquee-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}
.marquee--refined::before,
.marquee--refined::after {
  content: "";
  position: absolute;
  top: 0;
  width: 64px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee--refined::before {
  left: 0;
  background: linear-gradient(to right, #020617, transparent);
}
.marquee--refined::after {
  right: 0;
  background: linear-gradient(to left, #020617, transparent);
}
@keyframes marquee-scroll {
  from {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
  to {
    transform: translate3d(-50%,0,0);
    -webkit-transform: translate3d(-50%,0,0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* =========================
BREADCRUMB
========================== */
.breadcrumb {
  font-size: 0.9rem;
  padding: 1rem 0;
  color: #6B7280;
}
.breadcrumb a {
  color: var(--color-primary);
}
.breadcrumb a:hover {
  color: var(--color-primary-dark);
}
.breadcrumb ol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
/* =========================
GENERIC SECTION STYLES
========================== */
section {
  position: relative;
}
.about-inner {
  max-width: 720px;
  margin-inline: auto;
}
.feature-showcase .feature-grid,
.pet-care .petcare-grid,
.testimonials .testimonial-grid,
.news .news-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
/* =========================
CARDS & ICONS
========================== */
.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, rgba(26, 77, 143, 0.35), rgba(15, 23, 42, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.6);
}
.feature-card,
.product-card,
.certification-card,
.testimonial {
  padding: 1.5rem;
  min-width: 240px;
}
.product-card img,
.feature-card img,
.certification-card img,
.pet-care .product-card img {
  display: block;
  margin: 0 auto 0.75rem;
}
.testimonial blockquote {
  margin: 0 0 0.75rem;
  font-style: italic;
}
.testimonial cite {
  font-size: 0.85rem;
  color: var(--color-muted);
}
/* =========================
BUTTONS
========================== */
.button,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(191, 219, 254, 0.9);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}
.button:hover,
.button:focus-visible,
.cta:hover,
.cta:focus-visible {
  background: linear-gradient(135deg, var(--color-primary-dark), #062341);
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.35);
}
.link-button {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 2px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.link-button.secondary {
  color: #111827;
  border-bottom-color: #111827;
}
.link-button i {
  font-size: 0.8em;
  transition: transform 0.18s ease;
}
.link-button:hover,
.link-button:focus-visible {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.link-button:hover i,
.link-button:focus-visible i {
  transform: translateX(3px);
}
/* =========================
PRODUCTS SECTION / TABS
========================== */
.therapy-tabs {
  flex-wrap: wrap;
}
.therapy-tab {
  cursor: pointer;
  min-width: 220px;
  padding: 1.1rem 1.2rem;
  text-align: left;
  position: relative;
}
.therapy-tab .tooltip {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}
.therapy-tab::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  bottom: 0.65rem;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--color-primary);
  transition: width 0.22s ease;
}
.therapy-tab.active {
  border-color: var(--color-primary);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}
.therapy-tab.active::after {
  width: calc(100% - 2.4rem);
}
.products-container {
  margin-top: 1.75rem;
}
.product-list {
  display: none;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.product-list.active {
  display: flex;
}
/* =========================
THERAPY PORTFOLIO ICONS
========================== */
.therapy-card {
  text-align: left;
}
.therapy-card h3 {
  margin-top: 0.25rem;
}
.therapy-card:focus-visible {
  outline: 3px solid var(--color-primary-soft);
  outline-offset: 4px;
}
/* =========================
FOOTER
========================== */
.footer {
  background: #020617;
  color: #e5e7eb;
  padding: 3.5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.footer-branding {
  margin-bottom: 1.75rem;
  text-align: center;
}
.footer-branding img {
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.85));
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1.6fr;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.footer-section h4 {
  margin-bottom: 0.75rem;
}
.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-section a {
  color: #CBD5F5;
}
.footer-section a:hover {
  color: var(--color-accent);
}
.footer .links-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bg-links {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.7rem 0.75rem;
}
.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.footer .social-links a:hover {
  border-color: var(--color-accent);
  background: rgba(11, 119, 108, 0.4);
}
.footer-divider {
  height: 1px;
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 1.5rem;
  background: linear-gradient(to right, transparent, #1f2937, transparent);
  position: relative;
  z-index: 1;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* =========================
COMPANY HIGHLIGHTS
========================== */
.company-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.company-highlights .company-card {
  height: 100%;
  padding: 1.5rem 1.6rem;
  text-align: left;
}
.company-metric {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}
/* =========================
SCROLL REVEAL
========================== */
[data-animate],
[data-aos] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].in-view,
[data-aos].in-view,
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
TOPIC CARDS
========================== */
.featured-topics,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.topic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface, #fff);
  box-shadow: 0 6px 14px rgba(7,15,29,0.04);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}
.topic-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}
.topic-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 0.6rem;
  flex-shrink: 0;
}
.topic-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.topic-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.topic-card:focus-within {
  outline: 3px solid var(--color-primary-soft);
  outline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
  }
}
/* Mobile phones – fastest */
@media (max-width: 640px) and (hover: none) and (pointer: coarse) {
  .marquee-track {
    animation-duration: 11s;
  }
}
/* Tablets */
@media (min-width: 641px) and (max-width: 1024px) and (hover: none) {
  .marquee-track {
    animation-duration: 18s;
  }
}
/* =========================
EXTRA JS HELPERS
========================== */
#sitemap-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  display: none;
  z-index: 9998;
}
#sitemap-overlay.active { display: block; }
#sitemap-container {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 94%);
  max-height: 86vh;
  overflow: auto;
  background: var(--color-surface);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  z-index: 9999;
  display: none;
}
#sitemap-container.active { display: block; }
#sitemap-container:focus {
  outline: 3px solid var(--color-primary-soft);
}
.sitemap-close {
  position: absolute;
  right: 0.8rem;
  top: 0.6rem;
  background: rgba(11,119,108,0.08);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148,163,184,0.18);
}
.loading-indicator {
  margin: 0.75rem 0 1rem;
  color: var(--color-muted);
}
/* =========================
UTILITY HELPERS
========================== */
.center-indent {
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
/* =========================
GLASSMORPHISM
========================== */
.glass-shell,
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.glass-shell {
  border-radius: var(--radius-xl);
}
.glass-card {
  border-radius: var(--radius-lg);
}
/* =========================
ADDITIONAL UTILITIES
========================== */
.text-accent { color: var(--color-accent); }
.max-w-2xl { max-width: 42rem; margin-inline: auto; }
.max-w-3xl { max-width: 48rem; margin-inline: auto; }
.max-w-5xl { max-width: 64rem; margin-inline: auto; }
.grid.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* =========================
CONTACT PAGE
========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 2.5rem;
}
.contact-grid .qna-form input,
.contact-grid .qna-form textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qna-form input::placeholder,
.qna-form textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.85;
}
.qna-form input:focus,
.qna-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
  background: #ffffff;
}
.qna-form label {
  display: block;
  margin: 1.25rem 0 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1A2A3A;
}
.qna-form label:first-of-type {
  margin-top: 0;
}
.qna-form .button {
  margin-top: 1rem;
}
.qna-form .feedback {
  margin-top: 1rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.qna-form .feedback.active {
  opacity: 1;
}
.contact-grid .glass-card p {
  margin: 0.9rem 0;
  display: flex;
  align-items: center;
}
.contact-grid .glass-card i {
  color: var(--color-primary);
  margin-right: 0.75rem;
  font-size: 1.15rem;
  width: 1.4em;
  text-align: center;
}
.contact-grid .social-links {
  justify-content: center;
  gap: 1rem;
}
.contact-grid .social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: all 0.25s ease;
}
.contact-grid .social-links a:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
/* =========================
RESPONSIVE
========================== */
@media (max-width: 992px) {
  /* Show hamburger */
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
  }
  /* Hide desktop nav */
  .nav-menu {
    display: none;
  }
  /* Mobile nav when open */
  .nav-menu.nav-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.nav-open .dropdown {
    width: 100%;
  }
 .nav-menu.nav-open .dropdown-content {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 0.75rem;
    margin-top: 0.35rem;
  }
  .nav-menu.nav-open .dropdown.active .dropdown-content {
    display: block;
  }
  header.sticky img {
    max-width: 120px;
    height: auto;
  }
  .primary-actions-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-showcase__card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  .feature-showcase__card .icon-circle {
    width: 6rem;
    height: 6rem;
    font-size: 2.4rem;
  }
  .company-highlights {
    grid-template-columns: 1fr;
  }
  .p-xl {
    padding-inline: 1.1rem;
    padding-block: 2.25rem;
  }
  .therapy-tab {
    min-width: 100%;
  }
  header.sticky {
    padding-inline: 1.1rem;
  }
  .qna-form button {
    width: 100%;
  }
  .topic-card img {
    height: 130px;
  }
  .popup-overlay,
  .iso-popup-overlay {
    align-items: flex-start;
    padding-top: 10vh;
  }
  .popup-content,
  .iso-popup-content {
    width: 92%;
    max-width: 480px;
    max-height: 80vh;
    padding: 0.85rem;
    overflow-y: auto;
  }
  .popup-content img,
  .iso-popup-content img {
    max-height: 70vh;
    object-fit: contain;
  }
  .popup-close,
  .iso-popup-close {
    top: 0.5rem;
    right: 0.5rem;
  }
  .contact-grid .qna-form input,
  .contact-grid .qna-form textarea {
    padding: 0.85rem 0.95rem;
  }
  .feature-showcase {
    padding: 2rem 1.25rem;
  }
  .feature-showcase__card h2 {
    font-size: 1.6rem;
  }
  .feature-showcase__card p {
    font-size: 1rem;
  }
  .footer {
    padding: 2.5rem 1.25rem 1.5rem;
    text-align: center;
  }
  .footer-branding {
    margin-bottom: 2.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-section h4 {
    margin-bottom: 0.6rem;
  }
  .footer .links-list {
    align-items: center;
  }
  .bg-links {
    padding: 0.9rem 1rem;
  }
  .footer .social-links {
    justify-content: center;
    margin-top: 0.75rem;
  }
  .footer-divider {
    margin: 2rem auto 1.25rem;
  }
  .footer-bottom {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
/* =====================================
CONTACT FORM – ENHANCED UI (SAFE OVERRIDE)
Scoped only to .qna-form
===================================== */
.qna-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 2.25rem 2.25rem 2.5rem;
  border-radius: 1.25rem;
}
/* Headings */
.qna-form h2 {
  margin-bottom: 0.25rem;
}
.qna-form p {
  margin-bottom: 1.25rem;
}
/* Labels */
.qna-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-top: 0.6rem;
}
/* Inputs & textarea */
.qna-form input,
.qna-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  border-radius: 0.75rem;
  border: 1.8px solid rgba(148, 163, 184, 0.55);
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qna-form textarea {
  min-height: 130px;
  resize: vertical;
}
/* Focus state */
.qna-form input:focus,
.qna-form textarea:focus {
  outline: none;
  border-color: #1A4D8F;
  box-shadow: 0 0 0 4px rgba(26, 77, 143, 0.15);
}
/* Placeholder */
.qna-form input::placeholder,
.qna-form textarea::placeholder {
  color: #94a3b8;
}
/* Submit button */
.qna-form button {
  margin-top: 1.25rem;
  align-self: flex-start;
  padding-inline: 2.4rem;
  font-weight: 600;
}
/* Feedback messages */
.qna-form .feedback {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.qna-form .feedback.active {
  display: block;
}
.qna-form .feedback.success {
  color: #166534;
}
.qna-form .feedback.error {
  color: #b91c1c;
}
/* Mobile polish */
@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  .qna-form {
    padding: 1.75rem 1.5rem 2rem;
  }
  .qna-form button {
    width: 100%;
  }
}
/* ==================================================
CAREER PAGE – PAGE-SPECIFIC STYLING
Scoped to career.html structure
================================================== */
/* ---------- HERO ---------- */
/* ---------- INTRO SECTION ---------- */
section.glass-shell {
  box-shadow: var(--shadow-soft);
}
section.glass-shell p {
  line-height: 1.7;
}
/* ---------- WHY ALCOVET CARDS ---------- */
section .glass-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
section .glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
section .glass-card h3 {
  margin-bottom: 0.35rem;
}
/* ---------- JOB OPENINGS GRID ---------- */
#jobs-container {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
}
/* Individual job card (JS injected) */
.job-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.9rem;
  width: min(100%, 340px);
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
.job-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}
.job-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}
.job-card .job-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
/* Apply button inside job card */
.job-card a {
  margin-top: auto; /* pushes button to bottom */
  align-self: flex-start; /* keeps button centered */
 
}
/* ---------- NO JOBS MESSAGE ---------- */
#no-jobs-message {
  color: var(--color-muted);
  line-height: 1.6;
}
.text-career-highlight {
  color: #1e40af; /* navy blue */
}
/* ---------- APPLY CTA ---------- */
section .cta.button {
  margin-top: 1.25rem;
}
/* ---------- BREADCRUMB POLISH ---------- */
.breadcrumb ol li {
  font-size: 0.85rem;
}
.breadcrumb ol li + li::before {
  content: "›";
  margin-inline: 0.35rem;
  color: var(--color-muted);
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  section.glass-shell {
    padding: 2rem 1.25rem;
  }
  .job-card {
    width: 100%;
    max-width: 420px;
  }
}
/* ==================================================
PET CARE RESOURCES PAGE – STYLING
Scoped to pet-care-resources.html
================================================== */
/* ---------- BREADCRUMB ---------- */
.breadcrumb-nav {
  margin-top: 1rem;
}
.breadcrumb-nav ol li {
  font-size: 0.85rem;
}
.breadcrumb-nav ol li a {
  color: var(--color-primary);
}
.breadcrumb-nav ol li[aria-current="page"] {
  font-weight: 600;
}
/* ---------- INTRO SECTION ---------- */
section.max-w-screen > h1 {
  margin-bottom: 0.6rem;
}
section.max-w-screen > p {
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.7;
}
/* ---------- SEARCH CARD ---------- */
.pet-care .glass-card {
  margin-bottom: 2.5rem;
}
.search-bar {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-bar input {
  flex: 1;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-size: 0.95rem;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}
.search-bar button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search-bar button:hover {
  background: var(--color-primary-dark);
}
/* ---------- TOPIC HEADINGS ---------- */
.pet-care h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
/* ---------- TOPIC CARDS ---------- */
.featured-topics,
.topic-grid {
  margin-top: 0.75rem;
}
.topic-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.topic-card h3 {
  font-size: 1rem;
}
.topic-card p {
  font-size: 0.9rem;
}
/* ---------- AUTHORITY / LONG-FORM SECTIONS ---------- */
section.glass-card {
  max-width: 980px;
  margin-inline: auto;
  line-height: 1.75;
}
section.glass-card ul {
  padding-left: 1.25rem;
}
section.glass-card ul li {
  margin-bottom: 0.6rem;
}
section.glass-card a {
  color: var(--color-primary);
  font-weight: 500;
}
/* ---------- KNOWLEDGE HUB GRID ---------- */
section .topic-grid a.topic-card {
  padding: 1.25rem 1.25rem 1.4rem;
}
section .topic-grid a.topic-card h3 {
  margin-bottom: 0.25rem;
}
/* ---------- DISCLAIMER ---------- */
.pet-care p.text-sm {
  max-width: 70ch;
  margin-inline: auto;
  line-height: 1.6;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-bar button {
    width: 100%;
  }
  section.glass-card {
    padding: 1.75rem 1.5rem;
  }
}
/* Therapy color themes */
.therapy-card.eye .therapy-icon {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}
.therapy-card.ortho .therapy-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
}
.therapy-card.gastro .therapy-icon {
  background: linear-gradient(135deg, #16a34a, #065f46);
  color: #fff;
}
.therapy-card.skin .therapy-icon {
  background: linear-gradient(135deg, #db2777, #9d174d);
  color: #fff;
}
.therapy-card.deworming .therapy-icon {
  background: linear-gradient(135deg, #ea580c, #9a3412);
  color: #fff;
}
/* ==================================================
MISSION & VISION PAGE – PAGE-SPECIFIC STYLING
Scoped safely to existing classes
================================================== */
/* ---------- FEATURE SHOWCASE (MISSION / VISION) ---------- */
.feature-showcase--grid {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}
/* Mission / Vision cards */
.feature-showcase__card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-showcase__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-float);
}
/* Icon emphasis */
.feature-showcase__card .icon-circle {
  width: 6.5rem;
  height: 6.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(26, 77, 143, 0.55),
    rgba(15, 23, 42, 1)
  );
  color: #ffffff;
}
/* Headings */
.feature-showcase__card h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
/* Body text */
.feature-showcase__card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 42ch;
  margin-inline: auto;
}
/* ---------- CORE VALUES ---------- */
.feature-grid {
  justify-content: center;
}
.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
.feature-card .icon-circle {
  margin-bottom: 1rem;
}
.feature-card h3 {
  margin-bottom: 0.5rem;
}
/* ---------- HOW IT TRANSLATES SECTION ---------- */
.company-highlights {
  margin-top: 2.25rem;
}
.company-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
/* ---------- CTA POLISH ---------- */
.vet-hub .cta.button {
  padding-inline: 2.8rem;
  font-weight: 600;
}
/* ==================================================
CORE VALUES – HORIZONTAL LINEAR LAYOUT
Scoped safely to feature-grid used for core values
================================================== */
/* Core values container */
.feature-showcase .feature-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
/* Individual core value cards */
.feature-showcase .feature-card {
  flex: 0 0 260px; /* fixed, compact width */
  min-width: 260px;
  max-width: 260px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
/* Icon resize for compact cards */
.feature-showcase .feature-card .icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}
/* Headings */
.feature-showcase .feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
/* Body text */
.feature-showcase .feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}
/* Subtle scroll hint on touch devices */
.feature-showcase .feature-grid::-webkit-scrollbar {
  height: 6px;
}
.feature-showcase .feature-grid::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.6);
  border-radius: 999px;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .feature-showcase .feature-grid {
    justify-content: flex-start;
  }
}
.hero:not(.hero--poster) img {
  width: 100%;
  height: clamp(280px, 48vh, 440px);
  object-fit: cover;
  object-position: center;
}
/* =========================
THERAPY PORTFOLIO – MOBILE RAIL
========================== */
@media (max-width: 768px) {
  .feature-showcase .feature-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }
  .feature-showcase .feature-grid > a {
    flex: 0 0 240px;
    min-width: 240px;
    padding: 1.25rem;
    scroll-snap-align: start;
  }
  .feature-showcase .feature-grid h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
  .feature-showcase .feature-grid p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}
/* ==================================================
EYE CARE THERAPY PAGE – SAFE PAGE STYLING
Scoped to eye-care.html content structure
================================================== */
/* ---------- HERO POLISH ---------- */
.hero[aria-label*="Eye Care"] img {
  object-position: center 30%;
}
/* ---------- THERAPY INTRO ---------- */
.about.glass-shell {
  max-width: 1100px;
}
.about.glass-shell h1 {
  margin-bottom: 0.75rem;
}
.about.glass-shell p {
  line-height: 1.75;
}
/* ---------- PORTFOLIO AT A GLANCE ---------- */
.products .feature-grid {
  justify-content: center;
}
.products .product-card {
  width: min(100%, 420px);
  text-align: left;
}
.products .product-card h3 {
  margin-bottom: 0.4rem;
}
.features-list {
  padding-left: 1.1rem;
  margin-top: 0.5rem;
}
.features-list li {
  margin-bottom: 0.45rem;
  line-height: 1.5;
}
/* ---------- DEEP-DIVE SECTIONS ---------- */
.feature-showcase {
  max-width: 1200px;
}
.feature-showcase h2 {
  margin-bottom: 0.5rem;
}
.feature-showcase p {
  line-height: 1.65;
}
/* Card grid inside deep-dive sections */
.feature-showcase .feature-grid {
  justify-content: center;
}
/* Individual info cards */
.feature-showcase .glass-card {
  max-width: 360px;
  text-align: left;
}
.feature-showcase .glass-card h3 {
  margin-bottom: 0.5rem;
}
.feature-showcase .glass-card p,
.feature-showcase .glass-card li {
  line-height: 1.55;
}
/* ---------- SAFETY / CONTRAINDICATION EMPHASIS ---------- */
.feature-showcase .glass-card strong {
  color: var(--color-danger);
}
/* ---------- REFERENCES ---------- */
.references {
  max-width: 980px;
  margin-inline: auto;
  font-size: 0.9rem;
}
.references h4 {
  margin-bottom: 0.6rem;
}
.references ol li {
  margin-bottom: 0.6rem;
  line-height: 1.55;
}
.references a {
  color: var(--color-primary);
  font-weight: 500;
}
.references a:hover {
  color: var(--color-primary-dark);
}
/* ---------- CTA SECTION ---------- */
.vet-hub {
  max-width: 1000px;
}
.vet-hub p {
  max-width: 60ch;
  margin-inline: auto;
}
/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-primary-dark);
}
/* ==================================================
MOBILE OPTIMISATION – EYE CARE PAGE
================================================== */
@media (max-width: 768px) {
  /* Stack product cards cleanly */
  .products .product-card {
    width: 100%;
    max-width: 520px;
  }
  /* Make deep-dive cards swipeable */
  .feature-showcase .feature-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
  }
  .feature-showcase .glass-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    max-width: none;
  }
  /* Reduce reference density */
  .references {
    font-size: 0.85rem;
  }
}
/* =====================================
HERO — DESKTOP HEIGHT BOOST (NO CROP)
===================================== */
@media (min-width: 1024px) {
  .hero.hero--poster {
    min-height: 78vh;
    padding-block: 2rem;
  }
  .hero.hero--poster img {
    max-height: 78vh;
  }
}
/* ==================================================
MISSION & VISION – CORRECT LINEAR LAYOUT (FIXED)
Scoped ONLY to mission-vision page structure
================================================== */
/* Grid wrapper */
.feature-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin-inline: auto;
  align-items: stretch;
}
/* Mission / Vision cards */
.feature-showcase__card.feature-card--centered {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 3rem 3.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover polish (desktop only) */
@media (hover: hover) {
  .feature-showcase__card.feature-card--centered:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
  }
}
/* Icon */
.feature-showcase__card .icon-circle {
  width: 84px;
  height: 84px;
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}
/* Heading */
.feature-showcase__card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
/* Text */
.feature-showcase__card p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38ch;
  color: var(--color-muted);
}
/* =========================
MOBILE STACKING
========================= */
@media (max-width: 768px) {
  .feature-showcase__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-showcase__card.feature-card--centered {
    padding: 2.25rem 1.75rem;
  }
  .feature-showcase__card .icon-circle {
    width: 72px;
    height: 72px;
    font-size: 1.9rem;
  }
}
/* ================================
ISO Verification Link Highlight
================================ */
.verify-link {
  font-weight: 700;
  color: #dc2626; /* strong red */
  text-decoration: underline;
}
.verify-link:hover {
  color: #991b1b;
  text-decoration-thickness: 2px;
}
/* ================================
Certifications Layout Control
================================ */
.certifications-section .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
/* Tablet */
@media (max-width: 1024px) {
  .certifications-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 640px) {
  .certifications-section .grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
PRIVACY POLICY – PAGE REFINEMENT
Scoped, non-breaking
================================================== */
.policy-page {
  --policy-gap: 2.25rem;
}
/* Glass container refinement */
.policy-wrapper {
  padding: clamp(2rem, 4vw, 3rem);
  line-height: 1.75;
}
/* Individual policy sections */
.policy-block {
  margin-bottom: var(--policy-gap);
}
.policy-block:last-child {
  margin-bottom: 0;
}
/* Headings */
.policy-block h2 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.75rem;
}
.policy-block h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 1em;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}
/* Paragraphs */
.policy-block p {
  margin-bottom: 0.75rem;
  color: #1f2937;
}
.policy-block p:last-child {
  margin-bottom: 0;
}
/* Lists */
.policy-block ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.policy-block li {
  margin-bottom: 0.55rem;
  position: relative;
}
.policy-block li::marker {
  color: var(--color-primary);
}
/* Contact highlight */
.policy-contact {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: rgba(26, 77, 143, 0.06);
  border: 1px solid var(--color-border);
}
.policy-contact a {
  font-weight: 600;
  color: var(--color-primary);
}
/* Subtle section divider (optional) */
.policy-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(148,163,184,0.5),
    transparent
  );
  margin: 2.5rem 0;
}
/* Mobile polish */
@media (max-width: 768px) {
  .policy-wrapper {
    padding: 1.75rem 1.5rem;
  }
  .policy-block h2 {
    font-size: 1.15rem;
  }
}
/* =========================
THERAPY ICONS (PRODUCTS PAGE)
========================== */
.therapy-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
  box-shadow: 0 10px 24px rgba(15,23,42,0.25);
}
/* Therapy-specific gradients */
.therapy-card.eye .therapy-icon {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
.therapy-card.ortho .therapy-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}
.therapy-card.gastro .therapy-icon {
  background: linear-gradient(135deg, #16a34a, #065f46);
}
.therapy-card.skin .therapy-icon {
  background: linear-gradient(135deg, #db2777, #9d174d);
}
.therapy-card.deworming .therapy-icon {
  background: linear-gradient(135deg, #ea580c, #9a3412);
}
.therapy-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
    align-items: center;
    text-align: center;
}
.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
.proactive-note {
  margin: 2rem auto 1.25rem;
  max-width: 42rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #1e293b; /* slate-800 */
  background: #f8fafc; /* very light slate */
  border-left: 4px solid #1e40af; /* brand blue */
  border-radius: 6px;
}
.company-card {
  border-top: 4px solid var(--color-primary);
}
.company-card:nth-child(2) {
  border-top-color: var(--color-accent);
}
/* =========================
PRODUCT TAB BUTTONS
========================= */
.product-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.product-tab {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  padding-bottom: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
/* underline */
.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #111827;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
/* hover */
.product-tab:hover {
  color: var(--color-primary);
}
.product-tab:hover::after {
  transform: scaleX(1);
  background: var(--color-primary);
}
/* active tab */
.product-tab.active {
  color: var(--color-primary);
  font-weight: 600;
}
.product-tab.active::after {
  transform: scaleX(1);
  background: var(--color-primary);
}
/* mobile polish */
@media (max-width: 640px) {
  .product-nav {
    gap: 1.25rem;
  }
}
/* ==================================================
HEADER NAV – UNIFORM, COLOR-CODED, NON-CTA (FINAL)
Authoritative override – keep at bottom only
================================================== */
/* Base nav items (links + dropdown triggers) */
.nav-menu > a,
.nav-menu > .dropdown > span {
  position: relative;
  padding: 0.2rem 0;
  font-weight: 500;
  color: #1A2A3A;
}
/* Remove any CTA feel implicitly */
.nav-menu > a.nav-partner {
  border: none;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding-inline: 0;
}
/* Universal underline system */
.nav-menu > a::before,
.nav-menu > .dropdown > span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
/* ========== COLOR MAPPING ========== */
/* Company */
.nav-menu .dropdown.company > span::before {
  background: var(--nav-company);
}
.nav-menu .dropdown.company:hover > span,
.nav-menu .dropdown.company.active > span {
  color: var(--nav-company);
}
/* Therapies */
.nav-menu .dropdown.therapies > span::before {
  background: var(--nav-therapies);
}
.nav-menu .dropdown.therapies:hover > span,
.nav-menu .dropdown.therapies.active > span {
  color: var(--nav-therapies);
}
/* Resources */
.nav-menu .dropdown.resources > span::before {
  background: var(--nav-resources);
}
.nav-menu .dropdown.resources:hover > span,
.nav-menu .dropdown.resources.active > span {
  color: var(--nav-resources);
}
/* News */
.nav-menu > a.nav-news::before {
  background: var(--nav-news);
}
.nav-menu > a.nav-news:hover,
.nav-menu > a.nav-news.active {
  color: var(--nav-news);
}
/* Careers */
.nav-menu > a.nav-careers::before {
  background: var(--nav-careers);
}
.nav-menu > a.nav-careers:hover,
.nav-menu > a.nav-careers.active {
  color: var(--nav-careers);
}
/* Partner with Us (normalised) */
.nav-menu > a.nav-partner::before {
  background: var(--nav-partner);
}
.nav-menu > a.nav-partner:hover,
.nav-menu > a.nav-partner.active {
  color: var(--nav-partner);
}
/* Hover & active underline trigger */
.nav-menu > a:hover::before,
.nav-menu > a.active::before,
.nav-menu > .dropdown:hover > span::before,
.nav-menu > .dropdown.active > span::before {
  transform: scaleX(1);
}
/* Slight emphasis on active */
.nav-menu > a.active,
.nav-menu > .dropdown.active > span {
  font-weight: 600;
}
/* ========== MOBILE NAV POLISH ========== */
@media (max-width: 992px) {
  .nav-menu.nav-open > a,
  .nav-menu.nav-open > .dropdown > span {
    padding: 0.85rem 0;
  }
  .nav-menu > a::before,
  .nav-menu > .dropdown > span::before {
    bottom: 0;
    height: 3px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* ==================================================
PET CARE ARTICLE – VISUAL & AESTHETIC ENHANCEMENT
Audience: Indian Pet Parents (Friendly + Trustworthy)
Safe to paste at END of styles.css
================================================== */
/* ---------- ARTICLE HERO ---------- */
.pet-care-article > header.glass-shell {
  background:
    radial-gradient(circle at top left, rgba(26,77,143,0.18), transparent 60%),
    rgba(255,255,255,0.85);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.5rem) 2rem;
}
.pet-care-article > header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.25;
}
.pet-care-article > header p {
  max-width: 60ch;
  margin-inline: auto;
  font-size: 1.05rem;
}
/* ---------- SECTION HEADINGS ---------- */
.pet-care-article article > h2 {
  margin-top: 2.75rem;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  color: var(--color-primary);
  position: relative;
  padding-left: 0.75rem;
}
.pet-care-article article > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 1em;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}
/* ---------- PARAGRAPHS ---------- */
.pet-care-article article > p {
  max-width: 70ch;
  line-height: 1.75;
}
/* ---------- FRIENDLY LIST STYLE ---------- */
.pet-care-article ul {
  margin: 1rem 0 1.75rem;
  padding-left: 0;
}
.pet-care-article ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.pet-care-article ul li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0;
}
/* ---------- FAQ CARD FEEL ---------- */
.pet-care-article h3 {
  margin-top: 1.75rem;
  padding: 0.9rem 1rem;
  background: rgba(26,77,143,0.06);
  border-left: 4px solid var(--color-primary);
  border-radius: 0.6rem;
  font-size: 1.05rem;
}
.pet-care-article h3 + p {
  padding: 0.75rem 1rem 1rem;
  margin-top: -0.4rem;
  background: rgba(255,255,255,0.65);
  border-radius: 0 0 0.6rem 0.6rem;
}
/* ---------- IMPORTANT NOTE EMPHASIS ---------- */
.pet-care-article .glass-card {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.95),
      rgba(255,255,255,0.75)
    );
}
.pet-care-article .glass-card strong {
  color: var(--color-danger);
}
/* ---------- RELATED TOPICS AS CARDS ---------- */
.pet-care-article section.my-lg ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.pet-care-article section.my-lg ul li a {
  display: block;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.92);
  border-radius: 0.9rem;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pet-care-article section.my-lg ul li a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
/* ---------- MOBILE POLISH ---------- */
@media (max-width: 768px) {
  .pet-care-article > header.glass-shell {
    padding: 2.25rem 1.5rem;
  }
  .pet-care-article article > h2 {
    font-size: 1.25rem;
  }
  .pet-care-article section.my-lg ul {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
PET CARE ARTICLE – HERO HEADER (TRUST + WARMTH)
Applies ONLY to article intro header
================================================== */
.pet-care-article > header.glass-shell {
  position: relative;
  text-align: center;
  padding: clamp(2.75rem, 6vw, 3.75rem) 2rem;
  background:
    radial-gradient(circle at top left, rgba(26,77,143,0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(11,119,108,0.12), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(148,163,184,0.35);
}
/* Subtle trust halo */
.pet-care-article > header.glass-shell::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(26,77,143,0.12);
}
/* Title polish */
.pet-care-article > header h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
/* Friendly subtext */
.pet-care-article > header p {
  font-size: 1.05rem;
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.6;
}
/* Optional pet icon accent */
.pet-care-article > header h1::before {
  content: "🐶 🐱";
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
/* Mobile refinement */
@media (max-width: 768px) {
  .pet-care-article > header.glass-shell {
    padding: 2.25rem 1.5rem;
  }
  .pet-care-article > header h1::before {
    font-size: 1.35rem;
  }
}
/* Medical Disclaimer label */
.medical-label {
  color: #dc2626; /* medical red */
  font-weight: 700;
}
/* =========================================
SEARCH BAR – MAGNIFYING GLASS ICON (FIXED)
Works with existing .search-bar button
========================================= */
.search-bar {
  position: relative;
}
.search-bar button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #1e4b8f; /* brand blue */
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
/* Lens */
.search-bar button::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 14px;
  left: 14px;
}
/* Handle */
.search-bar button::after {
  content: "";
  width: 8px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 26px;
  left: 26px;
  transform: rotate(45deg);
}
/* Hover polish */
.search-bar button:hover {
  background: #163b72;
  box-shadow: 0 8px 18px rgba(30, 75, 143, 0.35);
  transform: translateY(-1px);
}
/* Accessibility */
.search-bar button:focus-visible {
  outline: 3px solid rgba(30, 75, 143, 0.35);
  outline-offset: 3px;
}
.link-callout{
  margin-top:24px;
  border-radius:12px;
  background:linear-gradient(135deg,#f0f7ff,#f8fbff);
  border:1px solid #e5edff;
}
.link-callout a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  color:#1e40af;
  text-decoration:none;
  font-weight:500;
}
.link-callout .link-accent{
  text-decoration:underline;
  text-underline-offset:3px;
}
.link-callout .arrow{
  font-size:1.25rem;
  transition:transform .2s ease;
}
.link-callout a:hover .arrow{
  transform:translateX(4px);
}
.soft-divider{
  border:none;
  height:1px;
  background:linear-gradient(to right,transparent,#e5e7eb,transparent);
  margin:36px 0 18px;
}
.next-step{
  text-align:center;
  font-size:1rem;
  font-weight:500;
  color:#374151;
}
.next-step a{
  margin-left:6px;
  color:#1e40af;
  font-weight:600;
  text-decoration:none;
}
.next-step a:hover{
  text-decoration:underline;
}
.paw-list{
  list-style:none;
  padding-left:0;
  margin:16px 0;
}
.paw-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
  line-height:1.55;
}
.paw-list li::before{
  content:"🐾";
  position:absolute;
  left:0;
  top:0.3em;
  font-size:1rem;
  opacity:0.85;
}
@media (max-width:480px){
  .paw-list li::before{
    font-size:0.95rem;
  }
}
.contra strong{
  color:#b91c1c;
  font-weight:700;
}
/* ==================================================
MEDIA PAGE – SAFE, SCOPED STYLING
Does NOT affect other pages
================================================== */
.media-page section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 3rem 1.5rem;
}
/* Intro / welcome */
.media-page .welcome {
  text-align: center;
}
.media-page .welcome h1 {
  margin-bottom: 0.75rem;
}
.media-page .welcome p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--color-muted);
}
/* Why Media Matters cards */
.media-page .why-media-matters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.media-page .why-media-matters .glass-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
}
/* Media list */
.media-page .media-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
/* Individual media cards */
.media-page .media-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.media-page .media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}
.media-page .media-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.media-page .media-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}
/* Labels (Press Release, News, Gallery) */
.media-page .media-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
/* =========================================
MEDIA HIGHLIGHTS – COLORFUL CARD UPGRADE
Scoped safely to media page only
========================================= */
.media-highlights .glass-card {
  position: relative;
  padding: 2.25rem 2rem 2.4rem;
  border-radius: 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(255,255,255,0.88)
  );
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
/* Hover polish */
@media (hover: hover) {
  .media-highlights .glass-card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 28px 60px rgba(15, 23, 42, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.9);
  }
}
/* =========================================
ICON BADGES – PREMIUM LOOK
========================================= */
.media-highlights .icon-circle {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  font-size: 1.55rem;
  border-radius: 999px;
  color: #ffffff;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.25),
    inset 0 1px 2px rgba(255,255,255,0.35);
}
/* Individual color themes */
/* Press Releases – Trust Blue */
.media-highlights .glass-card:nth-child(1) .icon-circle {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
.media-highlights .glass-card:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(37,99,235,0.18), transparent);
}
/* Industry Coverage – Knowledge Purple */
.media-highlights .glass-card:nth-child(2) .icon-circle {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}
.media-highlights .glass-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(124,58,237,0.18), transparent);
}
/* Event Galleries – Media Teal */
.media-highlights .glass-card:nth-child(3) .icon-circle {
  background: linear-gradient(135deg, #0ea5a4, #0b776c);
}
.media-highlights .glass-card:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(14,165,164,0.18), transparent);
}
/* =========================================
SOFT COLOR WASH (TOP ACCENT)
========================================= */
.media-highlights .glass-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  z-index: 0;
}
/* Ensure content stays above wash */
.media-highlights .glass-card > * {
  position: relative;
  z-index: 1;
}
/* =========================================
TEXT REFINEMENT
========================================= */
.media-highlights h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.media-highlights p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
}
/* =========================================
MOBILE POLISH
========================================= */
@media (max-width: 768px) {
  .media-highlights .glass-card {
    padding: 2rem 1.6rem;
  }
  .media-highlights .icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}
/* =========================
PRODUCT PAGE – WIDER CANVAS
Safe override
========================= */
body:has(.product-pack) .max-w-screen {
  max-width: 1320px;
}
/* PRODUCT OVERVIEW LAYOUT */
body:has(.product-pack) .product-grid {
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
body:has(.product-pack) .intro-card h1 {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: 1.2;
}
body:has(.product-pack) .intro-card p {
  max-width: 62ch;
}
/* PRODUCT IMAGE PEDESTAL */
body:has(.product-pack) .product-pack {
  background:
    radial-gradient(circle at center,
      rgba(26,77,143,0.10),
      transparent 65%);
  padding: 1.75rem;
  border-radius: 1.5rem;
  filter: drop-shadow(0 24px 48px rgba(15,23,42,0.28));
}
/* CLINICAL USE GRID */
body:has(.clinical-grid) .clinical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
body:has(.clinical-grid) .clinical-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--color-border);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}
/* PRODUCT CTA STRIP */
body:has(.cta-strip) .cta-strip {
  margin-top: 3rem;
  padding: 3rem 1.75rem;
  background: linear-gradient(135deg, #1e40af, #0f396a);
  color: #ffffff;
  text-align: center;
}
body:has(.cta-strip) .cta-strip p {
  opacity: 0.85;
}
/* ==================================================
HOME – RESOURCES HUB (DUAL COLOR + HOVER)
================================================== */
.resources-hub {
  background: linear-gradient(
    180deg,
    #f4f7fb 0%,
    #ffffff 100%
  );
}
/* Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
/* Base card */
.resource-card {
  position: relative;
  padding: 2.5rem 2.75rem;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
/* Accent strip */
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: inherit;
}
/* =========================
COLOR THEMES
========================= */
/* Veterinarian – Trust Blue */
.resource-vet::before {
  background: linear-gradient(90deg, #2563eb, #1e40af);
}
.resource-vet h3 {
  color: #1e40af;
}
/* Pet Care – Warm Teal */
.resource-pet::before {
  background: linear-gradient(90deg, #0ea5a4, #0b776c);
}
.resource-pet h3 {
  color: #0b776c;
}
/* =========================
HOVER EFFECTS
========================= */
@media (hover: hover) {
  .resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
  }
  /* Glow overlay */
  .resource-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top left,
      rgba(255,255,255,0.55),
      transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .resource-card:hover::after {
    opacity: 1;
  }
}
/* =========================
CTA LINK
========================= */
.resource-link {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
/* Link colors match card */
.resource-vet .resource-link {
  color: #1e40af;
}
.resource-pet .resource-link {
  color: #0b776c;
}
.resource-link span {
  transition: transform 0.2s ease;
}
.resource-link:hover {
  transform: translateY(-1px);
}
.resource-link:hover span {
  transform: translateX(4px);
}
.resource-vet .resource-link:hover {
  border-bottom-color: #1e40af;
}
.resource-pet .resource-link:hover {
  border-bottom-color: #0b776c;
}
/* =========================
MOBILE STACK
========================= */
@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .resource-card {
    padding: 2rem 1.75rem;
    text-align: center;
  }
  .resource-link {
    justify-content: center;
  }
}
/* ==================================================
PET CARE HUB – DUAL AUDIENCE COLOR CODING
================================================== */
.primary-actions-grid {
  gap: 2rem;
}
/* Base enhancement */
.primary-card {
  position: relative;
  padding: 2rem 2.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Accent strip */
.primary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: inherit;
}
/* =========================
PET PARENT – WARM & FRIENDLY
========================= */
.card-pet-parent::before {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
}
.card-pet-parent h2 {
  color: #9a3412;
}
.card-pet-parent .link-button {
  border-bottom-color: #ea580c;
}
/* =========================
VETERINARIAN – CLINICAL BLUE
========================= */
.card-veterinarian::before {
  background: linear-gradient(90deg, #2563eb, #1e40af);
}
.card-veterinarian h2 {
  color: #1e40af;
}
.card-veterinarian .link-button {
  border-bottom-color: #1e40af;
}
/* =========================
HOVER BEHAVIOUR
========================= */
@media (hover: hover) {
  .primary-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
  }
  .primary-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top left,
      rgba(255,255,255,0.6),
      transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .primary-card:hover::after {
    opacity: 1;
  }
}
/* =========================
MOBILE CENTERING
========================= */
@media (max-width: 768px) {
  .primary-card {
    text-align: center;
  }
  .primary-card .link-button {
    justify-content: center;
  }
}
/* ==================================================
QR-SPECIFIC MICROCOPY
================================================== */
.qr-microcopy {
  background: linear-gradient(
    90deg,
    rgba(37,99,235,0.06),
    rgba(14,165,164,0.06)
  );
  border-left: 4px solid #2563eb;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
}
.qr-microcopy p {
  margin: 0;
  color: #1f2937;
}
.qr-microcopy {
  background: #f8fafc;
  border-left: 3px solid #2563eb;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}
body:has(.benefit-stack) .benefit-stack p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
}
body:has(.benefit-stack) .glass-shell > p {
  max-width: 72ch;
}
/* ==================================================
PRODUCT PAGE – WHY OMEGA & USAGE (FINAL FIX)
Scoped, safe, clinical
================================================== */
/* Tighten section spacing */
body:has(.benefit-stack) section.glass-shell {
  padding: clamp(2.25rem, 4vw, 2.75rem);
}
/* Section heading + intro */
body:has(.benefit-stack) section.glass-shell h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  text-align: center;
}
body:has(.benefit-stack) section.glass-shell > p {
  max-width: 68ch;
  margin-bottom: 1.75rem;
  color: #475569;
  line-height: 1.65;
}
/* WHY OMEGA CARDS – CLINICAL STYLE */
body:has(.benefit-stack) .benefit-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
body:has(.benefit-stack) .benefit-stack > div {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.98),
    rgba(248,250,252,0.96)
  );
  border: 1px solid rgba(148,163,184,0.45);
  border-left: 4px solid var(--color-primary);
  border-radius: 0.85rem;
  padding: 1.1rem 1.15rem 1.25rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}
/* Card headings */
body:has(.benefit-stack) .benefit-stack h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.4rem;
}
/* =========================
USAGE & ADMINISTRATION
========================= */
body:has(.cta-strip) section.glass-shell ul {
  padding-left: 0;
  margin-top: 0.75rem;
}
body:has(.cta-strip) section.glass-shell ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.55;
}
body:has(.cta-strip) section.glass-shell ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: 700;
}
/* Regulatory disclaimer box */
body:has(.cta-strip) .disclaimer {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  background: #f8fafc;
  border-left: 4px solid #dc2626;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
/* =========================
CLINICAL USE – ALIGNMENT FIX
========================= */
body:has(.clinical-grid) section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
body:has(.clinical-grid) section > p {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  color: #64748b;
}
/* Clinical use cards – refined grid */
body:has(.clinical-grid) .clinical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
/* Center the last clinical card when it wraps alone */
body:has(.clinical-grid) .clinical-grid > .clinical-item:last-child {
  font-weight: 500;
  background: #f8fafc;
}
/* ==================================================
GLOBAL HEADING SYSTEM – ALCO VET
Corporate • Calm • Confident • Premium • Clean
================================================== */

/* ---------- BASE TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =====================================
H1 — BRAND / PAGE AUTHORITY
===================================== */
h1 {
  font-weight: 600; /* Reduced from 700 for a lighter, more elegant feel */
  line-height: 1.25;
  text-align: center;
  color: var(--color-primary);
}

/* Clean, solid underline – no gradient */
@media (min-width: 768px) {
  h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: var(--color-primary);
    opacity: 0.9;
    transition: width 0.5s ease;
  }

  /* Subtle hover expansion for quiet interactivity */
  h1:hover::after {
    width: 96px;
  }
}

/* Left-aligned variant */
.h1-left,
.text-left h1 {
  text-align: left;
}
@media (min-width: 768px) {
  .h1-left::after,
  .text-left h1::after {
    margin-left: 0;
    margin-right: auto;
  }
}

/* =====================================
H2 — SECTION LEADERSHIP
===================================== */
h2 {
  font-weight: 500; /* Lighter weight for calmer, less bulky appearance */
  line-height: 1.35;
  text-align: center;
  color: var(--color-primary-dark);
}

/* Minimal solid marker line */
@media (min-width: 768px) {
  h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 0.75rem auto 0;
    border-radius: 999px;
    background: var(--color-primary);
    opacity: 0.85;
    transition: width 0.4s ease;
  }

  h2:hover::after {
    width: 72px;
  }
}

/* Left-aligned H2 */
.h2-left,
.text-left h2 {
  text-align: left;
}
@media (min-width: 768px) {
  .h2-left::after,
  .text-left h2::after {
    margin-left: 0;
    margin-right: auto;
  }
}

/* =====================================
H3 — INFORMATIONAL / CLINICAL
===================================== */
h3 {
  font-weight: 500; /* Reduced for lighter, more approachable feel */
  line-height: 1.4;
  color: #1e293b; /* slate-800 */
  transition: color 0.3s ease;
}

/* Contextual emphasis in cards */
.glass-card h3,
.feature-card h3,
.product-card h3,
.therapy-card h3 {
  color: var(--color-primary);
}

/* Gentle hover shift for subtle interactivity */
.glass-card:hover h3,
.feature-card:hover h3,
.product-card:hover h3,
.therapy-card:hover h3 {
  color: var(--color-accent);
}

/* =====================================
DARK / MUTED ENVIRONMENTS
===================================== */
.footer h3,
.footer h4 {
  color: #f1f5f9;
  font-weight: 500;
}

/* =====================================
COMPANY INTRO TEXT – CLEAN & READABLE
===================================== */
.company-intro {
  color: #475569; /* slate-600 */
  line-height: 1.8;
  font-size: 1.125rem;
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

.company-intro strong {
  font-weight: 600;
  color: var(--color-primary); /* Solid color instead of gradient */
  transition: color 0.3s ease;
}

.company-intro strong:hover {
  color: var(--color-accent);
}

/* =====================================
HERO – POSTER BANNER (MOBILE FIRST)
===================================== */
.hero.hero--poster {
  width: 100%;
  min-height: 32vh; /* Ensures visibility on mobile */
  background: #020617; /* fallback bar color */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -40px 60px rgba(0,0,0,0.15);
}

.hero.hero--poster img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* mobile safe */
  object-position: center;
  display: block;
}

/* ================================
LAPTOPS (13–15 inch)
================================ */
@media (min-width: 1024px) {
  .hero.hero--poster {
    min-height: 65svh;
  }
}

/* ================================
DESKTOP MONITORS (24–27 inch)
================================ */
@media (min-width: 1280px) {
  .hero.hero--poster {
    min-height: 62svh;
  }
}

/* ================================
LARGE / ULTRA-WIDE SCREENS
================================ */
@media (min-width: 1536px) {
  .hero.hero--poster {
    min-height: 65svh;
    max-height: 820px; /* 🔒 prevents ridiculous tall hero */
  }
}
