/* ==========================================================================
   AURA WILDLIFE CONSERVANCY - MODERN FULL-WIDTH STYLESHEET
   Aesthetic matching the reference sanctuary adoption layout
   ========================================================================== */

:root {
  /* Color Palette matching reference */
  --bg-dark-forest: #162414;
  --bg-forest: #22341d;
  --bg-olive: #495a36;
  --bg-olive-dark: #3c4b2b;
  --bg-olive-light: #576b42;
  --bg-cream: #f4f2e6;
  --bg-cream-card: #fdfbf5;
  --bg-card-inner: #f7f3e4;
  
  --accent-gold: #f3b72b;
  --accent-gold-hover: #e0a316;
  --accent-gold-light: #fbe598;
  --accent-gold-pale: #fff6d6;
  --accent-green: #38b000;
  --accent-leaf: #52b788;
  
  --text-dark: #1f2a1b;
  --text-muted: #5e6d59;
  --text-light: #f3f7f1;
  --text-light-muted: #bfd1bc;
  
  --border-gold: rgba(243, 183, 43, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-cream: rgba(45, 60, 38, 0.12);
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 8px 25px rgba(243, 183, 43, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-forest);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* Full Width Fluid Container */
.site-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .site-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }

.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.kicker-gold {
  color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.title-light { color: #ffffff; }
.title-dark { color: var(--bg-forest); }

.section-subtitle {
  font-size: 1.05rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.subtitle-light { color: var(--text-light-muted); }
.subtitle-dark { color: var(--text-muted); }

/* Buttons */
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e29f12 100%);
  color: #1a2718;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(226, 159, 18, 0.35);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-cta-gold:hover {
  background: linear-gradient(135deg, #ffd15d 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(226, 159, 18, 0.5);
  color: #121d10;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(243, 183, 43, 0.08);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #1a2718;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.top-utility-bar {
  background-color: #101c0e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  color: #a7bfa3;
  padding: 0.45rem 0;
  width: 100%;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e5f5e2;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.utility-divider {
  color: rgba(255, 255, 255, 0.2);
}

.utility-item a:hover, .utility-link:hover {
  color: var(--accent-gold);
}

.utility-currency {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  color: #e5f5e2;
  font-weight: 600;
}

@media (max-width: 992px) {
  .top-utility-bar { display: none; }
}

/* ==========================================================================
   2. STICKY HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 36, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 183, 43, 0.18);
  width: 100%;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.85rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #e5efe3;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-search-trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #e5efe3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-search-trigger:hover {
  background: var(--accent-gold);
  color: #1a2718;
}

.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.btn-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #172716;
  z-index: 1050;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
  height: 40px;
  width: auto;
}

.btn-close-drawer {
  font-size: 2rem;
  color: #ffffff;
  line-height: 1;
}

.drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #e5efe3;
  display: block;
}

.drawer-link:hover {
  color: var(--accent-gold);
}

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .btn-hamburger { display: flex; }
}

/* ==========================================================================
   3. HERO SECTION WITH OVERLAPPING SEAL
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: url('../images/hero-wildlife.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(14, 25, 13, 0.94) 0%, 
    rgba(18, 32, 16, 0.82) 45%, 
    rgba(22, 38, 19, 0.65) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 183, 43, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: 1.15rem;
  color: #d6e8d2;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1.05rem 2.25rem;
  font-size: 1rem;
}

.hero-btn-secondary {
  padding: 1.05rem 2.25rem;
  font-size: 1rem;
}

/* Overlapping Circular Seal Badge */
.hero-seal-wrapper {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-seal-anchor {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(243, 183, 43, 0.5);
  transition: transform 0.4s ease;
}

.hero-seal-anchor:hover {
  transform: scale(1.06) rotate(6deg);
}

.hero-seal-img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .hero-title { font-size: 2.35rem; }
  .hero-description { font-size: 1rem; }
  .hero-seal-anchor {
    width: 110px;
    height: 110px;
  }
  .hero-seal-wrapper {
    bottom: -50px;
  }
}

/* ==========================================================================
   4. EXCLUSIVE ADOPTION PACKET SHOWCASE (Olive Green)
   ========================================================================== */
.packet-section {
  background-color: var(--bg-olive);
  color: #ffffff;
  padding-top: 7rem;
  padding-bottom: 5.5rem;
  position: relative;
  width: 100%;
}

.packet-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.packet-info .section-kicker {
  color: var(--accent-gold);
}

.packet-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.packet-lead {
  font-size: 1.08rem;
  color: #dcebd8;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.packet-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #1a2718;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-text strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.perk-text p {
  font-size: 0.92rem;
  color: #d6e8d2;
  line-height: 1.5;
}

.packet-visual {
  position: relative;
}

.mockup-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 30, 15, 0.45);
  transition: var(--transition);
}

.mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(18, 30, 15, 0.6);
}

.packet-mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.mockup-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(22, 36, 20, 0.92);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
}

@media (max-width: 992px) {
  .packet-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   5. RESIDENT AMBASSADORS DIRECTORY (Deep Forest Green)
   ========================================================================== */
.animals-section {
  background-color: #384826;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  width: 100%;
}

/* Filter Controls */
.filter-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  background: rgba(18, 30, 15, 0.45);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #dbead7;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  background: transparent;
  transition: var(--transition);
}

.filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
  background: var(--accent-gold);
  color: #172615;
  box-shadow: 0 4px 15px rgba(243, 183, 43, 0.4);
}

/* Search Bar */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a7bfa3;
  font-size: 0.95rem;
}

.animal-search-input {
  width: 100%;
  background: rgba(22, 38, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 2.8rem 0.75rem 3rem;
  border-radius: var(--radius-full);
  outline: none;
  transition: var(--transition);
}

.animal-search-input::placeholder {
  color: #9cb597;
}

.animal-search-input:focus {
  border-color: var(--accent-gold);
  background: rgba(22, 38, 20, 0.95);
  box-shadow: 0 0 0 4px rgba(243, 183, 43, 0.2);
}

.btn-clear-search {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a7bfa3;
  font-size: 1.25rem;
}

.btn-clear-search:hover {
  color: #ffffff;
}

/* Animals Grid: Multi-column responsive layout */
.animals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1200px) {
  .animals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .animals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 520px) {
  .animals-grid {
    grid-template-columns: 1fr;
  }
}

/* Animal Card: Beige card matching screenshot */
.animal-card {
  background: #fdfaf2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(12, 22, 10, 0.35);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.animal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(12, 22, 10, 0.5);
}

.card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #2b3b22;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.animal-card:hover .card-img {
  transform: scale(1.08);
}

.category-pill {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(22, 38, 20, 0.85);
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 183, 43, 0.3);
}

.badge-pill {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: #ffffff;
  color: #172615;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.card-meta {
  margin-bottom: 0.35rem;
}

.card-species {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5c6e54;
  font-style: italic;
  display: block;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e2e1a;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.card-bio {
  font-size: 0.88rem;
  color: #4b5846;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* Funding Progress Bar */
.funding-status {
  margin-top: auto;
  margin-bottom: 1.25rem;
  text-align: left;
}

.funding-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 600;
  color: #61735a;
  margin-bottom: 0.35rem;
}

.funding-labels strong {
  color: #274020;
}

.progress-track {
  width: 100%;
  height: 7px;
  background: #e3decd;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #52b788 0%, var(--accent-gold) 100%);
  border-radius: 10px;
}

/* Adopt Button */
.btn-adopt-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--accent-gold);
  color: #172615;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(243, 183, 43, 0.3);
  transition: var(--transition);
}

.btn-adopt-trigger:hover {
  background: #e0a316;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(243, 183, 43, 0.45);
}

/* Empty State */
.empty-search-message {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(18, 30, 15, 0.35);
  border-radius: var(--radius-md);
  color: #ffffff;
  margin-top: 1rem;
}

.empty-search-message i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.empty-search-message h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.empty-search-message p {
  color: #c9dcc6;
  margin-bottom: 1.5rem;
}

/* Multi-animal Callout Banner */
.multi-animal-banner {
  margin-top: 4.5rem;
  background: linear-gradient(135deg, rgba(22, 38, 20, 0.85) 0%, rgba(35, 58, 30, 0.85) 100%);
  border: 1px solid rgba(243, 183, 43, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 12px 35px rgba(12, 22, 10, 0.4);
}

.banner-heart-icon {
  width: 72px;
  height: 72px;
  background: #d90429;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}

.banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.banner-text p {
  color: #d1e5cc;
  font-size: 1.02rem;
  line-height: 1.6;
}

.banner-cta {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .multi-animal-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   6. 3-COLUMN FAQ SECTION (Warm Cream Parchment)
   ========================================================================== */
.faq-section {
  background-color: var(--bg-cream);
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  width: 100%;
}

.faq-badge-emblem {
  display: inline-block;
  background: #f3b72b;
  color: #172615;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.4rem 1.4rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.faq-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.column-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #273b20;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(39, 59, 32, 0.15);
  margin-bottom: 0.5rem;
}

.column-heading i {
  color: var(--accent-gold-hover);
}

.faq-item {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(39, 59, 32, 0.05);
}

.faq-item:hover {
  border-color: rgba(243, 183, 43, 0.5);
  box-shadow: 0 6px 16px rgba(39, 59, 32, 0.1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e2c1a;
  background: transparent;
  transition: var(--transition);
}

.question-icon {
  color: #4a753d;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.question-text {
  flex-grow: 1;
  line-height: 1.4;
}

.toggle-indicator {
  color: #798a72;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .toggle-indicator {
  transform: rotate(180deg);
  color: var(--accent-gold-hover);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  background: #fbf9f0;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer-panel {
  max-height: 300px;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(45, 60, 38, 0.08);
}

.faq-answer-panel p {
  font-size: 0.9rem;
  color: #44543f;
  line-height: 1.6;
}

.faq-footer-note {
  margin-top: 3.5rem;
  font-size: 0.95rem;
  color: #55694f;
}

.faq-footer-note a {
  color: #264b1f;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .faq-three-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   7. SANCTUARY DISPATCHES & MEDIA
   ========================================================================== */
.media-section {
  background-color: #273b22;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  width: 100%;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.media-card {
  background: #1d2d19;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.media-thumb {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #111b0e;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-img {
  transform: scale(1.06);
}

.media-video-card {
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 25, 13, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.media-video-card:hover .play-overlay {
  background: rgba(14, 25, 13, 0.2);
}

.play-btn-circle {
  width: 54px;
  height: 54px;
  background: var(--accent-gold);
  color: #172615;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding-left: 4px;
  box-shadow: 0 4px 15px rgba(243, 183, 43, 0.5);
  transition: transform 0.3s ease;
}

.media-video-card:hover .play-btn-circle {
  transform: scale(1.15);
}

.video-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.media-badge-pill {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(22, 38, 20, 0.9);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.media-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.media-tag {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.media-headline {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.media-desc {
  font-size: 0.86rem;
  color: #c0d3bd;
  line-height: 1.55;
}

.media-social-banner {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c5d8c1;
}

.social-chips {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-chip:hover {
  background: var(--accent-gold);
  color: #172615;
  border-color: var(--accent-gold);
}

@media (max-width: 992px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. FOOTER (Deep Forest Green, Strictly NO Phone Numbers)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark-forest);
  color: #9cb597;
  padding-top: 5rem;
  padding-bottom: 2rem;
  width: 100%;
  border-top: 1px solid rgba(243, 183, 43, 0.2);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 46px;
  width: auto;
}

.footer-bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #b5ccb1;
  margin-bottom: 1.5rem;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #c9dec5;
}

.contact-entry i {
  color: var(--accent-gold);
  margin-top: 3px;
}

.contact-entry a {
  color: #e5f2e1;
  font-weight: 600;
}

.contact-entry a:hover {
  color: var(--accent-gold);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 1.35rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #abc2a7;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.newsletter-lead {
  font-size: 0.9rem;
  color: #b9d0b5;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.newsletter-form .input-group {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.3rem 0.3rem 1.25rem;
  margin-bottom: 1rem;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  flex-grow: 1;
  outline: none;
}

.newsletter-input::placeholder {
  color: #8da488;
}

.newsletter-submit {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.newsletter-feedback {
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: var(--accent-gold-light);
}

.accreditation-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.charity-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #d1e5cc;
}

.charity-badge i {
  color: var(--accent-gold);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #8fa68b;
}

.bottom-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bottom-legal-links a:hover {
  color: var(--accent-gold);
}

.bottom-legal-links .sep {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   9. INTERACTIVE ADOPTION MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 18, 9, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--accent-gold);
  animation: modalEnter 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  line-height: 1;
  color: #172615;
  z-index: 10;
}

.modal-close-btn:hover {
  color: #d90429;
}

.modal-body-container {
  padding: 2rem;
}

.modal-header-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #f7f5ea;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
}

.modal-animal-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  flex-shrink: 0;
}

.modal-animal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-category-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #274020;
  letter-spacing: 1.5px;
  display: block;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #172615;
  line-height: 1.2;
}

.modal-species {
  font-size: 0.85rem;
  color: #6c7e65;
  font-style: italic;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #172615;
  margin-bottom: 0.6rem;
}

/* Frequency Selector */
.frequency-selector {
  display: flex;
  background: #f2efe4;
  padding: 0.35rem;
  border-radius: var(--radius-full);
}

.freq-option {
  flex: 1;
  text-align: center;
  padding: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #4b5a45;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.freq-option input { display: none; }

.freq-option.active {
  background: var(--bg-forest);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(22, 38, 20, 0.3);
}

/* Tiers Grid in Modal */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.tier-card {
  border: 2px solid #e1dcc9;
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  background: #ffffff;
}

.tier-card input { display: none; }

.tier-card:hover {
  border-color: var(--accent-gold);
}

.tier-card.selected {
  border-color: var(--accent-gold);
  background: #fffdf5;
  box-shadow: 0 4px 14px rgba(243, 183, 43, 0.25);
}

.tier-card.popular {
  border-color: #52b788;
}

.popular-badge {
  position: absolute;
  top: -9px;
  right: 12px;
  background: #2d6a4f;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #172615;
  margin-bottom: 0.25rem;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #b37d05;
}

.tier-tag {
  font-size: 0.75rem;
  color: #52734d;
  font-weight: 600;
}

/* Gift Toggle */
.gift-toggle-group {
  background: #fbfaf2;
  border: 1px dashed #d5ceb8;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2b3d24;
  cursor: pointer;
}

.gift-fields-wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e3decb;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-col { flex: 1; }

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #d4cdb7;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(243, 183, 43, 0.2);
}

/* Order Summary */
.order-summary-box {
  background: #f5f2e6;
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #43543d;
  margin-bottom: 0.4rem;
}

.summary-row:last-child {
  margin-bottom: 0;
  padding-top: 0.6rem;
  border-top: 1px solid #dfd9c4;
  font-size: 1.05rem;
  color: #172615;
}

.total-amount {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #b37d05;
}

.security-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #6d7f67;
  margin-top: 1rem;
  text-align: center;
}

/* Modal Success State */
.modal-success-view {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  font-size: 4rem;
  color: #52b788;
  margin-bottom: 1.5rem;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #172615;
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1rem;
  color: #4b5e45;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-reference {
  background: #f7f4e9;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.success-reference strong {
  color: #274020;
  font-family: var(--font-heading);
}

/* ==========================================================================
   10. VIDEO MODAL LIGHTBOX
   ========================================================================== */
.video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal-backdrop.active {
  display: flex;
}

.video-modal-dialog {
  width: 100%;
  max-width: 860px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
}

.video-modal-close:hover {
  color: var(--accent-gold);
}

.video-container-responsive {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-simulation-player {
  position: relative;
  width: 100%;
  height: 480px;
  background: #000;
}

.video-still-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.video-simulation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
  color: #ffffff;
}

.video-modal-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.video-controls-simulation {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
}

.sim-track {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
}

.sim-thumb {
  width: 35%;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 4px;
}

.sim-time {
  font-size: 0.8rem;
  color: #d1e2ce;
}
