/* ============================================
   East Coast Pets - Launch-Ready Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary-bg: #1A0629;
  --header-bg: rgba(25, 3, 39, 0.85);
  --accent-color: #C8E034;
  --secondary-accent: #57C8C6;
  --text-color: #f0f0f0;
  --text-muted: #b8b8c0;
  --highlight-color: #FA5387;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --glow-accent: rgba(200, 224, 52, 0.4);
  --glow-highlight: rgba(250, 83, 135, 0.3);
  --section-alt: #220840;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(200, 224, 52, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Poppins', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--primary-bg);
  line-height: 1.7;
  max-width: 100%;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

/* content-visibility: auto removed — it prevented loading="lazy" images
   from computing their viewport distance, causing blank images on first load. */

section[id] {
  scroll-margin-top: 95px;
}

/* Accessibility: Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-color);
  color: var(--primary-bg);
  padding: 0.5rem 1rem;
  z-index: 10000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
  left: 0;
  outline: 2px solid var(--secondary-accent);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Header --- */
.site-header {
  background-color: var(--header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  max-width: 100%;
  border-bottom: 1px solid rgba(200, 224, 52, 0.08);
  transition: background-color 0.35s ease;
}

.site-header.scrolled {
  padding: 0.35rem 2rem;
  background-color: rgba(25, 3, 39, 0.96);
  border-bottom-color: rgba(200, 224, 52, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo img {
  max-width: 155px;
  height: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.site-header.scrolled .logo img {
  max-width: 115px;
}

.logo a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Store Status Badge */
.store-status {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.store-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: statusPulse 2.5s ease-in-out infinite;
}

.store-status.open {
  background: rgba(200, 224, 52, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(200, 224, 52, 0.25);
}

.store-status.open .store-status-dot {
  background: var(--accent-color);
  box-shadow: 0 0 5px rgba(200, 224, 52, 0.7);
}

.store-status.closed {
  background: rgba(250, 83, 135, 0.08);
  color: var(--highlight-color);
  border: 1px solid rgba(250, 83, 135, 0.18);
}

.store-status.closed .store-status-dot {
  background: var(--highlight-color);
  box-shadow: 0 0 5px rgba(250, 83, 135, 0.5);
  animation-duration: 4s;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
  padding: 0 1rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background-color 0.25s ease;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
  background-color: rgba(200, 224, 52, 0.08);
  outline: none;
}

.nav-link:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out-expo), left 0.3s var(--ease-out-expo);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1100;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background-color: rgba(200, 224, 52, 0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Header End Group --- */
.header-end {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.header-call-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(200, 224, 52, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  letter-spacing: 0.2px;
}

.header-call-btn:hover {
  background: rgba(200, 224, 52, 0.1);
  border-color: var(--accent-color);
}

.header-call-btn:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* --- Hero Section --- */
#hero {
  position: relative;
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  max-width: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 8, 64, 1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 100%, rgba(87, 200, 198, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 224, 52, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--primary-bg) 0%, #0e0216 100%);
}

/* Floating ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-orb--accent {
  width: 500px;
  height: 500px;
  background: var(--accent-color);
  top: -25%;
  right: -15%;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero-orb--highlight {
  width: 400px;
  height: 400px;
  background: var(--secondary-accent);
  bottom: -20%;
  left: -12%;
  animation: orbFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

#hero > *:not(.hero-orb) {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out both;
}

#hero h1 { animation-delay: 0.1s; }
#hero p { animation-delay: 0.2s; }
#hero .hero-actions { animation-delay: 0.35s; }
#hero .hero-storefront { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0.2rem 0 0.6rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

#hero p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  max-width: 600px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Storefront showcase card */
.hero-storefront {
  margin-top: 1.1rem;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 224, 52, 0.08);
  border: 1px solid rgba(200, 224, 52, 0.12);
  position: relative;
}

.hero-storefront img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-storefront:hover img {
  transform: scale(1.03);
}

#hero .btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transform: translateY(0);
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px var(--glow-accent);
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 24px var(--glow-accent); }
  50% { box-shadow: 0 4px 36px rgba(200, 224, 52, 0.6); }
}

#hero .btn:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(87, 200, 198, 0.5);
  animation: none;
}

#hero .btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  animation: none;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

#hero .btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  animation: none;
}

#hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: none;
  transform: none;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered child entrance */
.stagger-children > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
}

.stagger-children.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.in-view > *:nth-child(1) { transition-delay: 0.03s; }
.stagger-children.in-view > *:nth-child(2) { transition-delay: 0.06s; }
.stagger-children.in-view > *:nth-child(3) { transition-delay: 0.09s; }
.stagger-children.in-view > *:nth-child(4) { transition-delay: 0.12s; }
.stagger-children.in-view > *:nth-child(5) { transition-delay: 0.15s; }
.stagger-children.in-view > *:nth-child(6) { transition-delay: 0.18s; }

/* --- Section Headings --- */
.info-section h2,
.brands-container h2,
.gallery-section h2,
.live-animals-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.info-section h2::after,
.brands-container h2::after,
.gallery-section h2::after,
.live-animals-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  margin: 0.6rem auto 0;
}

.info-section h2 {
  color: var(--accent-color);
}

.info-section h2::after {
  background: var(--accent-color);
}

.brands-container h2 {
  color: var(--accent-color);
}

.brands-container h2::after {
  background: var(--accent-color);
}

.gallery-section h2 {
  color: var(--highlight-color);
}

.gallery-section h2::after {
  background: var(--highlight-color);
}

/* Heading underline reveal animation */
.reveal h2::after {
  width: 0;
  transition: width 0.6s var(--ease-out-expo) 0.2s;
}

.reveal.visible h2::after {
  width: 60px;
}

/* --- Info Section (About & Contact) --- */
.info-section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.info-section > p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-section p strong {
  color: var(--text-color);
}

/* --- Pet Categories Grid --- */
.pet-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 800px;
  margin: 2.5rem auto;
}

.pet-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pet-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 224, 52, 0.3);
}

.pet-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.pet-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.3rem;
}

.pet-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --- Store Hours --- */
.hours-container {
  margin-top: 2.5rem;
  background: linear-gradient(145deg, rgba(40, 10, 60, 0.8), rgba(26, 6, 41, 0.8));
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(200, 224, 52, 0.15);
}

.hours-dropdown {
  max-width: 640px;
  margin: 0 auto;
}

.hours-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem 1.15rem;
  background: rgba(200, 224, 52, 0.06);
  border: 1px solid rgba(200, 224, 52, 0.22);
  border-radius: 50px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hours-dropdown summary:hover {
  background: rgba(200, 224, 52, 0.12);
  border-color: rgba(200, 224, 52, 0.45);
}

.hours-dropdown summary::-webkit-details-marker {
  display: none;
}

.hours-dropdown-icon {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.hours-dropdown[open] .hours-dropdown-icon {
  transform: rotate(180deg);
}

.hours-dropdown summary:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.hours {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 640px;
  margin: 1rem auto 0;
}

.hours li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  text-align: left;
  color: var(--text-color);
  border: 1px solid rgba(200, 224, 52, 0.1);
}

.hours li:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.hours li span.day {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent-color);
  white-space: nowrap;
}

.hours li span.hours-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}
/* --- Brands Section --- */
.brands-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--section-alt) 100%);
  text-align: center;
  max-width: 100%;
}

.brands-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brands-container h2 {
  margin-bottom: 2rem;
}

/* --- Gallery Section --- */
.gallery-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--section-alt) 0%, var(--primary-bg) 100%);
  text-align: center;
  max-width: 100%;
}

.gallery-section h2 {
  margin-bottom: 2rem;
}

/* --- Carousel Shared --- */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.brand-carousel,
.gallery-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2%;
  cursor: grab;
  justify-content: flex-start;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-carousel::-webkit-scrollbar,
.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.brand-slide,
.gallery-slide {
  flex: 0 0 auto;
  transition: transform 0.35s ease;
  scroll-snap-align: start;
  will-change: transform;
}

/* --- Brand Slides --- */
.brand-slide {
  width: 170px;
  text-align: center;
}

.brand-slide a {
  text-decoration: none;
  display: block;
  color: var(--text-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.brand-slide .brand-static {
  display: block;
  color: var(--text-color);
}

.brand-slide img {
  width: 100%;
  height: 115px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 0.5rem;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.brand-slide p {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.6rem;
  padding: 0.2rem 0;
  transition: color 0.3s ease;
}

.brand-slide a:hover {
  color: var(--secondary-accent);
}

.brand-slide a:hover img {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.brand-slide a:hover p {
  color: var(--accent-color);
}

.brand-slide a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.brand-slide a:focus p {
  color: var(--secondary-accent);
}

/* --- Gallery Slides --- */
.gallery-slide {
  width: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gallery-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  display: block;
}

.gallery-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.gallery-slide:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Gallery Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 2, 16, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out-expo);
}

.lightbox-overlay.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.1);
}

.lightbox-close:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* --- Aquarium Services Section --- */
.services-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--section-alt) 50%, var(--primary-bg) 100%);
  text-align: center;
  max-width: 100%;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--secondary-accent);
  letter-spacing: -0.3px;
  margin-bottom: 0.25rem;
}

.services-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  margin: 0.6rem auto 0;
  background: var(--secondary-accent);
}

.services-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.services-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Services pricing cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  border-color: rgba(87, 200, 198, 0.4);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-accent);
  color: var(--primary-bg);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.service-tier {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.service-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-accent);
  font-size: 0.85rem;
}

/* Highlighted middle card */
.service-standard {
  border-color: rgba(87, 200, 198, 0.3);
  box-shadow: 0 4px 24px rgba(87, 200, 198, 0.1);
}

.service-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

/* Perfect For section */
.services-perfect-for {
  margin-bottom: 2.5rem;
}

.services-perfect-for h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
}

.perfect-for-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.perfect-for-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-color);
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.perfect-for-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 224, 52, 0.3);
}

.perfect-for-icon {
  font-size: 1.3rem;
}

/* CTA area */
.services-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.services-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.btn-services {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background-color: var(--secondary-accent);
  color: var(--primary-bg);
  border: 2px solid var(--secondary-accent);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(0);
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(87, 200, 198, 0.3);
}

.btn-services:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--glow-accent);
}

.btn-services:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-services-outline {
  background: transparent;
  color: var(--secondary-accent);
  box-shadow: none;
}

.btn-services-outline:hover {
  background: rgba(87, 200, 198, 0.1);
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
  transform: none;
}

.services-cta .services-urgency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--highlight-color);
}

/* --- Contact Section --- */
#contact {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

#contact h2 {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-color);
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 224, 52, 0.35);
}

.contact-card:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.contact-icon {
  font-size: 1.8rem;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  word-break: break-word;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
}

.social-button {
  width: 54px;
  height: 54px;
  transform: scale(1) translateY(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  border-radius: 50%;
}

.social-button:hover {
  transform: scale(1.15) translateY(-3px);
  filter: drop-shadow(0 4px 14px var(--glow-accent));
}

.social-button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Map */
.map-container {
  margin-top: 2.5rem;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.directions-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.directions-link:hover {
  color: var(--secondary-accent);
}

.directions-link:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* --- Legal Section --- */
.legal-section {
  padding: 3rem 1.5rem;
  max-width: 720px;
  margin: auto;
  text-align: left;
}

.legal-section h1 {
  font-family: var(--font-heading);
  text-align: center;
  color: var(--accent-color);
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

.legal-updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
}

.legal-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.legal-nav a:hover,
.legal-nav a:focus {
  color: var(--accent-color);
  background-color: rgba(200, 224, 52, 0.08);
}

.legal-section h2 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 224, 52, 0.1);
}

.legal-section section:first-of-type h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-section h3 {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.4rem;
}

.legal-section h4 {
  color: var(--secondary-accent);
  font-size: 1rem;
  font-weight: 600;
  margin: 0.6rem 0 0.3rem;
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-section a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--secondary-accent);
}

.legal-section a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* --- Live Animals & Housing Section --- */
.live-animals-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--section-alt) 0%, var(--primary-bg) 50%, var(--section-alt) 100%);
  text-align: center;
  max-width: 100%;
}

.live-animals-container {
  max-width: 900px;
  margin: 0 auto;
}

.live-animals-container h2 {
  color: var(--secondary-accent);
  margin-bottom: 1rem;
}

.live-animals-container h2::after {
  background: var(--secondary-accent);
}

.live-animals-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 1.2rem;
  line-height: 1.8;
  text-align: center;
}

.live-animals-availability {
  font-size: 0.95rem;
  color: var(--text-color);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.4rem;
  background: rgba(200, 224, 52, 0.06);
  border: 1px solid rgba(200, 224, 52, 0.18);
  border-radius: var(--radius-md);
  line-height: 1.7;
}

.live-animals-availability a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.live-animals-availability a:hover {
  color: var(--secondary-accent);
}

.live-animals-availability a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Accordion */
.animal-accordion {
  text-align: left;
  margin-bottom: 3rem;
}

.accordion-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(200, 224, 52, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: var(--card-bg);
  border: none;
  cursor: pointer;
  color: var(--text-color);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: -2px;
}

.accordion-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
}

.accordion-arrow {
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--accent-color);
  border-bottom: 2.5px solid var(--accent-color);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(-135deg);
}

.accordion-panel {
  background: var(--card-bg);
  overflow: hidden;
  max-height: 0;
  padding: 0 1.4rem;
  visibility: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease, visibility 0s 0.4s, opacity 0.3s ease;
}

.accordion-panel.is-open {
  max-height: 700px;
  padding-bottom: 1.4rem;
  visibility: visible;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease, visibility 0s 0s, opacity 0.3s ease;
}

.accordion-panel > * {
  overflow: hidden;
}

.accordion-panel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.accordion-panel ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.accordion-panel li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}

.accordion-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-accent);
  font-size: 0.85rem;
}

/* Housing Features */
.housing-features {
  text-align: center;
}

.housing-features h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.6rem;
}

.housing-features > p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.housing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.housing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.housing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(87, 200, 198, 0.35);
}

.housing-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}

.housing-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.4rem;
}

.housing-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Legal Tabs --- */
.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  padding: 0.6rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
}

.legal-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.legal-tab:hover {
  color: var(--accent-color);
  background-color: rgba(200, 224, 52, 0.08);
}

.legal-tab:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.legal-tab.active {
  color: var(--primary-bg);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.legal-tab-panel {
  animation: tabFadeIn 0.3s ease;
}

.legal-tab-panel h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 404 Error Page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.error-page h1 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.error-page p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.error-page .home-btn {
  margin-top: 1.5rem;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, #110221 0%, #090113 100%);
  color: var(--text-muted);
  border-top: 1px solid rgba(200, 224, 52, 0.1);
  max-width: 100%;
  font-size: 0.875rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  align-items: start;
}

.footer-col-heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  display: block;
  transition: opacity 0.2s ease;
}

.footer-logo-link:hover .footer-logo {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-social-row {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 224, 52, 0.4);
  box-shadow: 0 4px 14px rgba(200, 224, 52, 0.2);
}

.footer-social-icon:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(200, 224, 52, 0.25);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  letter-spacing: 0.2px;
}

.footer-review-btn:hover {
  background: rgba(200, 224, 52, 0.08);
  border-color: rgba(200, 224, 52, 0.5);
}

.footer-review-btn:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Footer Contact Column */
.footer-col--contact address {
  font-style: normal;
  margin-bottom: 0.75rem;
}

.footer-col--contact address p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.3rem 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--accent-color);
}

.footer-contact-link:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-directions {
  margin-top: 0.35rem;
  color: var(--secondary-accent);
  font-size: 0.82rem;
}

.footer-directions:hover {
  color: var(--accent-color);
}

/* Footer Hours Column */
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-hours-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 0.85rem;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-hours-row dt {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
}

.footer-hours-row dd {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.late-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary-accent);
  background: rgba(87, 200, 198, 0.12);
  border: 1px solid rgba(87, 200, 198, 0.2);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
}

.footer-hours-row--closed dt,
.footer-hours-row--closed dd {
  opacity: 0.45;
}

/* Footer Nav Column */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-list li a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-list li:last-child a {
  border-bottom: none;
}

.footer-nav-list li a:hover {
  color: var(--accent-color);
  padding-left: 0.4rem;
}

.footer-nav-list li a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(200, 224, 52, 0.07);
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.55;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* SSL Badge */
.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.5;
  padding: 0.2rem 0.65rem 0.2rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.ssl-badge svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.ssl-badge:hover {
  opacity: 0.85;
}

.powered-by {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.powered-by:hover {
  opacity: 0.85;
}

.powered-by a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.powered-by:hover a {
  color: var(--accent-color);
}

.home-btn,
.legal-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.home-btn:hover,
.legal-link:hover {
  color: var(--secondary-accent);
}

.home-btn:focus,
.legal-link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.legal-link {
  font-size: 0.8rem;
}

.home-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1rem;
  transform: translateY(0);
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px var(--glow-accent);
}

.home-btn:hover {
  background-color: var(--secondary-accent);
  color: var(--primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 200, 198, 0.4);
}

.home-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Image Fallback */
img {
  max-width: 100%;
  height: auto;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--glow-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(87, 200, 198, 0.5);
}

.back-to-top:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--primary-bg);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Touch devices: keep interactions crisp without hover jitter */
@media (hover: none), (pointer: coarse) {
  .pet-card:hover,
  .service-card:hover,
  .housing-card:hover,
  .gallery-slide:hover,
  .contact-card:hover,
  .perfect-for-item:hover,
  .lightbox-close:hover,
  .nav-toggle:hover,
  .legal-link:hover {
    transform: none;
    box-shadow: none;
  }

  #hero .btn:hover,
  #hero .btn:active {
    transform: none;
    box-shadow: 0 4px 24px var(--glow-accent);
  }

  .btn-services:hover,
  .btn-services:active {
    transform: none;
    box-shadow: 0 4px 20px rgba(87, 200, 198, 0.3);
  }

  .btn-services-outline:hover,
  .btn-services-outline:active {
    transform: none;
    box-shadow: none;
  }

  .home-btn:hover,
  .home-btn:active {
    transform: none;
    box-shadow: 0 4px 16px var(--glow-accent);
  }

  .back-to-top:hover {
    transform: translateY(0);
    box-shadow: 0 4px 20px var(--glow-accent);
  }

  .social-button:hover {
    transform: none;
    filter: none;
  }

  .brand-slide a:hover img,
  .hero-storefront:hover img,
  .gallery-slide:hover img,
  .logo img:hover {
    transform: none;
    filter: none;
  }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 6, 41, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    padding: 2rem 1.5rem;
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav.open {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.25s ease, background-color 0.25s ease;
  }

  .main-nav.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open .nav-link:nth-child(1) { transition-delay: 0.05s; }
  .main-nav.open .nav-link:nth-child(2) { transition-delay: 0.1s; }
  .main-nav.open .nav-link:nth-child(3) { transition-delay: 0.15s; }
  .main-nav.open .nav-link:nth-child(4) { transition-delay: 0.2s; }
  .main-nav.open .nav-link:nth-child(5) { transition-delay: 0.25s; }
  .main-nav.open .nav-link:nth-child(6) { transition-delay: 0.3s; }
  .main-nav.open .nav-link:nth-child(7) { transition-delay: 0.35s; }

  .nav-link::after {
    display: none;
  }

  .store-status {
    font-size: 0.68rem;
    padding: 0.22rem 0.6rem;
    margin-right: 0.5rem;
  }

  .store-status-dot {
    width: 6px;
    height: 6px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Hide back-to-top behind overlay when nav is open */
  body.nav-open .back-to-top {
    opacity: 0;
    pointer-events: none;
  }

  .site-header {
    padding: 0.6rem 1.5rem;
  }

  .site-header.scrolled {
    padding: 0.3rem 1.5rem;
  }

  #hero {
    padding: 1.5rem 1.5rem 2rem;
  }

  .hero-orb--accent {
    width: 350px;
    height: 350px;
  }

  .hero-orb--highlight {
    width: 280px;
    height: 280px;
  }

  .hero-storefront {
    max-width: 400px;
  }

  #hero h1 {
    font-size: 1.75rem;
  }

  #hero .btn {
    padding: 0.7rem 2rem;
    font-size: 1rem;
  }

  .info-section {
    padding: 3.5rem 1.5rem;
  }

  .brands-section,
  .gallery-section {
    padding: 3.5rem 1.5rem;
  }

  .live-animals-section {
    padding: 3.5rem 1.5rem;
  }

  .accordion-panel ul {
    grid-template-columns: 1fr;
  }

  .housing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .housing-card {
    padding: 1.2rem 1rem;
  }

  .legal-tabs {
    gap: 0.25rem;
    padding: 0.5rem;
  }

  .legal-tab {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }

  .services-section {
    padding: 3.5rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.5rem 1.2rem;
  }

  .service-price {
    font-size: 1.5rem;
  }

  .perfect-for-grid {
    gap: 0.6rem;
  }

  .perfect-for-item {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }

  .perfect-for-icon {
    font-size: 1.1rem;
  }

  .services-perfect-for h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .btn-services {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }

  #contact {
    padding: 3.5rem 1.5rem;
  }

  .pet-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .pet-card {
    padding: 1.1rem 0.8rem;
  }

  .pet-icon {
    font-size: 1.8rem;
  }

  .pet-card h3 {
    font-size: 0.9rem;
  }

  .pet-card p {
    font-size: 0.75rem;
  }

  /* Hours */
  .hours-container {
    padding: 1.5rem;
    max-width: 95%;
  }

  .hours {
    gap: 0.8rem;
  }

  .hours li {
    padding: 0.75rem 0.85rem;
    gap: 0.55rem;
  }

  .hours li span.day {
    font-size: 0.9rem;
  }

  .hours li span.hours-text {
    font-size: 0.85rem;
  }

  /* Carousel */
  .brand-slide {
    width: 145px;
  }

  .brand-slide img {
    height: 100px;
  }

  .brand-slide p {
    font-size: 0.78rem;
  }

  .gallery-slide {
    width: 270px;
  }

  .gallery-slide img {
    height: 210px;
  }

  /* Contact Cards */
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .contact-card {
    flex-direction: row;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    text-align: left;
  }

  .contact-icon {
    font-size: 1.4rem;
  }

  .contact-label {
    font-size: 0.75rem;
  }

  .contact-value {
    font-size: 0.85rem;
  }

  .map-container iframe {
    height: 280px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem 1rem;
  }

  /* Back to top */
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  /* Legal */
  .legal-section {
    padding: 2rem 1rem;
  }

  .legal-section h1 {
    font-size: 1.8rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-section h3 {
    font-size: 1rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.88rem;
  }

  .legal-nav {
    gap: 0.3rem;
    padding: 0.75rem;
  }

  .legal-nav a {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  #hero > *:not(.hero-orb) {
    animation: none;
  }

  #hero .btn {
    animation: none;
  }

  .hero-orb {
    animation: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .reveal h2::after {
    width: 60px;
  }

  .lightbox-overlay,
  .lightbox-overlay img {
    transition: none;
  }

  .main-nav .nav-link {
    opacity: 1;
    transform: none;
  }

  .accordion-panel,
  .accordion-panel[hidden] {
    transition: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  #hero {
    padding: 1.2rem 1rem 1.8rem;
  }

  .hero-orb--accent {
    width: 250px;
    height: 250px;
    filter: blur(100px);
  }

  .hero-orb--highlight {
    width: 200px;
    height: 200px;
    filter: blur(100px);
  }

  .hero-storefront {
    max-width: 300px;
    margin-top: 0.9rem;
  }

  .store-status {
    display: none;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  #hero .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }

  .pet-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .pet-card {
    padding: 1rem 0.6rem;
  }

  .pet-icon {
    font-size: 1.6rem;
  }

  .hours-container {
    padding: 1rem;
  }

  .hours {
    gap: 0.45rem;
  }

  .hours li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.6rem 0.7rem;
    text-align: left;
  }

  .hours li span.day {
    font-size: 0.84rem;
    white-space: normal;
  }

  .hours li span.hours-text {
    font-size: 0.82rem;
    text-align: left;
    white-space: normal;
  }

  .brand-slide {
    width: 120px;
  }

  .brand-slide img {
    height: 80px;
  }

  .brand-slide p {
    font-size: 0.75rem;
  }

  .gallery-slide {
    width: 220px;
  }

  .gallery-slide img {
    height: 165px;
  }

  .services-perfect-for {
    margin-bottom: 1.5rem;
  }

  .services-perfect-for h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .perfect-for-grid {
    gap: 0.5rem;
  }

  .perfect-for-item {
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  .perfect-for-icon {
    font-size: 1rem;
  }

  .services-cta p {
    font-size: 0.9rem;
  }

  .services-cta .services-urgency {
    font-size: 0.8rem;
  }

  .btn-services {
    padding: 0.65rem 1.4rem;
    font-size: 0.88rem;
  }

  .service-tier {
    font-size: 1rem;
  }

  .service-price {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.3rem;
  }

  .services-intro {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .services-tagline {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .contact-cards {
    gap: 0.8rem;
  }

  .map-container iframe {
    height: 240px;
    border-radius: var(--radius-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Legal */
  .legal-section {
    padding: 1.5rem 0.75rem;
  }

  .legal-section h1 {
    font-size: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.2rem;
  }

  .legal-section h3 {
    font-size: 0.95rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.85rem;
  }

  .legal-tabs {
    gap: 0.2rem;
    padding: 0.4rem;
  }

  .legal-tab {
    font-size: 0.73rem;
    padding: 0.38rem 0.6rem;
  }

  .live-animals-section {
    padding: 3rem 1rem;
  }

  .live-animals-intro {
    font-size: 0.92rem;
    margin-bottom: 2rem;
  }

  .accordion-trigger {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    gap: 0.5rem;
  }

  .accordion-icon {
    font-size: 1.2rem;
  }

  .accordion-panel {
    padding: 0 1rem 1rem;
  }

  .accordion-panel ul {
    grid-template-columns: 1fr;
  }

  .housing-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .housing-card {
    padding: 1rem 0.8rem;
  }

  .housing-features h3 {
    font-size: 1.2rem;
  }

  /* Why Us responsive */
  .why-us-section {
    padding: 3rem 1rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .why-us-card {
    padding: 1.2rem 0.8rem;
  }

  .why-us-icon {
    font-size: 2rem;
  }

  .why-us-card h3 {
    font-size: 0.9rem;
  }

  .why-us-card p {
    font-size: 0.8rem;
  }

  /* FAQ responsive */
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}


/* ============================================
   New Component Styles
   ============================================ */

/* --- Hero Trust Badges --- */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.hero-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-badge:hover {
  background: rgba(200, 224, 52, 0.08);
  color: var(--accent-color);
}

/* --- About Section CTA --- */
.about-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-cta {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 18px var(--glow-accent);
}

.btn-cta:hover {
  background-color: var(--secondary-accent);
  border-color: var(--secondary-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(87, 200, 198, 0.5);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-cta-outline {
  background: transparent;
  color: var(--text-color);
  box-shadow: none;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: none;
  transform: none;
}

/* --- Why Choose Us Section --- */
.why-us-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--section-alt) 0%, var(--primary-bg) 100%);
  text-align: center;
  max-width: 100%;
}

.why-us-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.why-us-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-color);
  margin: 0.6rem auto 0;
}

.why-us-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-us-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 224, 52, 0.35);
}

.why-us-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-us-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Gallery Intro --- */
.gallery-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: -0.8rem auto 2rem;
  line-height: 1.7;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--section-alt) 100%);
  text-align: center;
  max-width: 100%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.faq-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-color);
  margin: 0.6rem auto 0;
}

.faq-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  max-width: 580px;
}

.faq-intro a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-intro a:hover {
  color: var(--secondary-accent);
}

.faq-list {
  text-align: left;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(200, 224, 52, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-color);
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question {
  color: var(--accent-color);
  background: rgba(200, 224, 52, 0.04);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: -2px;
}

.faq-chevron {
  width: 11px;
  height: 11px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.faq-item[open] .faq-chevron {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 1.4rem 1.4rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.faq-answer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--secondary-accent);
}

.faq-answer a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Mobile: nav link stagger delays + new sections responsive */
@media (max-width: 768px) {
  .main-nav.open .nav-link:nth-child(8) { transition-delay: 0.40s; }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
  }

  .why-us-section {
    padding: 3.5rem 1.5rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .faq-section {
    padding: 3.5rem 1.5rem;
  }

  .in-store-section {
    padding: 3.5rem 1.5rem;
  }

  .in-store-channels {
    gap: 0.75rem;
  }

  .channel-card {
    padding: 0.9rem 1rem;
  }

  .channel-icon {
    width: 34px;
    height: 34px;
  }

  .channel-info strong {
    font-size: 0.9rem;
  }

  .channel-info span {
    font-size: 0.78rem;
  }

  .about-cta {
    margin-top: 2rem;
    gap: 0.75rem;
  }

  /* Footer responsive */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-review-btn {
    margin: 0 auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-bottom-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem 1.5rem;
    gap: 1.5rem;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-col--contact address p,
  .footer-contact-link,
  .footer-hours-row dt,
  .footer-hours-row dd {
    font-size: 0.82rem;
  }

  .in-store-section {
    padding: 3rem 1rem;
  }

  .in-store-channels {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  .why-us-card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-cta:hover {
    transform: none;
    box-shadow: 0 4px 18px var(--glow-accent);
  }

  .btn-cta-outline:hover {
    transform: none;
  }

  .footer-social-icon:hover,
  .channel-card:hover {
    transform: none;
    box-shadow: none;
  }

  .footer-nav-list li a:hover {
    padding-left: 0;
  }
}

/* Suppress removed back-to-top */
.back-to-top { display: none !important; }


/* ============================================
   Fact Ticker — Redesigned
   ============================================ */

.fact-ticker {
  background: linear-gradient(135deg, rgba(34, 8, 64, 0.97) 0%, rgba(20, 4, 35, 0.97) 100%);
  border-top: 1px solid rgba(200, 224, 52, 0.1);
  border-bottom: 1px solid rgba(87, 200, 198, 0.12);
  padding: 1.4rem 2rem;
  overflow: hidden;
  position: relative;
}

.fact-ticker::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(200, 224, 52, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 90% 50%, rgba(87, 200, 198, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.fact-ticker-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Category filter pills */
.fact-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.fact-cat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.fact-cat:hover {
  background: rgba(200, 224, 52, 0.08);
  border-color: rgba(200, 224, 52, 0.25);
  color: var(--accent-color);
}

.fact-cat.active {
  background: rgba(200, 224, 52, 0.14);
  border-color: rgba(200, 224, 52, 0.4);
  color: var(--accent-color);
  box-shadow: 0 0 12px rgba(200, 224, 52, 0.12);
}

.fact-cat:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Fact card */
.fact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(200, 224, 52, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  min-height: 90px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fact-card:hover {
  border-color: rgba(200, 224, 52, 0.22);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.fact-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(200, 224, 52, 0.06);
  border: 1px solid rgba(200, 224, 52, 0.12);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}

.fact-emoji.pop {
  transform: scale(1.2) rotate(-5deg);
}

.fact-body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.fact-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--secondary-accent);
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.fact-text {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fact-text.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.fact-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Controls */
.fact-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fact-prev,
.fact-next {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 224, 52, 0.18);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fact-prev:hover,
.fact-next:hover {
  background: rgba(200, 224, 52, 0.12);
  border-color: rgba(200, 224, 52, 0.5);
  transform: scale(1.08);
}

.fact-prev:active,
.fact-next:active {
  transform: scale(0.95);
}

.fact-prev:focus-visible,
.fact-next:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.fact-counter {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  min-width: 50px;
  text-align: center;
  opacity: 0.65;
}

/* Progress bar */
.fact-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.fact-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border-radius: 3px;
  transition: width 0.15s linear;
}

/* ---- Fact Ticker Responsive: 768px ---- */
@media (max-width: 768px) {
  .fact-ticker {
    padding: 1.1rem 1.25rem;
  }

  .fact-ticker-inner {
    gap: 0.8rem;
  }

  .fact-categories {
    gap: 0.3rem;
  }

  .fact-cat {
    font-size: 0.66rem;
    padding: 0.25rem 0.6rem;
  }

  .fact-card {
    padding: 1rem 1.15rem;
    gap: 0.8rem;
    min-height: 80px;
  }

  .fact-emoji {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .fact-text {
    font-size: 0.86rem;
  }

  .fact-prev,
  .fact-next {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }
}

/* ---- Fact Ticker Responsive: 480px ---- */
@media (max-width: 480px) {
  .fact-ticker {
    padding: 0.9rem 0.9rem;
  }

  .fact-ticker-inner {
    gap: 0.65rem;
  }

  .fact-categories {
    gap: 0.25rem;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent);
    mask-image: linear-gradient(to right, black 90%, transparent);
  }

  .fact-categories::-webkit-scrollbar {
    display: none;
  }

  .fact-cat {
    font-size: 0.64rem;
    padding: 0.22rem 0.55rem;
  }

  .fact-card {
    padding: 0.85rem 0.9rem;
    gap: 0.65rem;
    min-height: auto;
    align-items: center;
  }

  .fact-emoji {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    border-radius: var(--radius-sm);
  }

  .fact-tag {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
  }

  .fact-text {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .fact-controls {
    gap: 0.8rem;
  }

  .fact-prev,
  .fact-next {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .fact-counter {
    font-size: 0.65rem;
    min-width: 42px;
  }

  .fact-progress {
    height: 2px;
  }
}


/* ============================================
   In-Store / Social Section
   ============================================ */

.in-store-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--section-alt) 100%);
  text-align: center;
  max-width: 100%;
}

.in-store-container {
  max-width: 900px;
  margin: 0 auto;
}

.in-store-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-accent);
  margin-bottom: 1rem;
}

.in-store-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.in-store-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--secondary-accent);
  margin: 0.6rem auto 0;
}

.in-store-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}

.in-store-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(87, 200, 198, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.channel-card:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.channel-info {
  flex: 1;
  min-width: 0;
}

.channel-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.channel-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.channel-arrow {
  font-size: 1.15rem;
  color: var(--secondary-accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.channel-card:hover .channel-arrow {
  transform: translateX(4px);
}

.in-store-phone {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.in-store-phone a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.in-store-phone a:hover {
  color: var(--secondary-accent);
}


/* ============================================
   Mobile Nav — call button + scroll reveal
   ============================================ */

.nav-call-btn {
  display: none;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: rgba(200, 224, 52, 0.1);
  border: 1px solid rgba(200, 224, 52, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-call-btn:hover {
  background: rgba(200, 224, 52, 0.18);
  border-color: var(--accent-color);
}

.nav-call-btn:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .header-call-btn {
    display: none;
  }

  .nav-call-btn {
    display: block;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease 0.45s, transform 0.3s ease 0.45s,
                background 0.25s ease, border-color 0.25s ease;
  }

  .main-nav.open .nav-call-btn {
    opacity: 1;
    transform: translateX(0);
  }

  .in-store-channels {
    grid-template-columns: 1fr;
  }
}


