:root {
  --bg-dark: #0a1f0c;
  --bg-medium: #0d2818;
  --bg-light: #1b4d20;
  --text-primary: #0d1f0e;
  --text-light: #e8f5e9;
  --text-accent: #a7f3d0;
  --green-900: #0d2818;
  --green-700: #2d6e32;
  --green-600: #2f7d32;
  --green-500: #3b8b3b;
  --green-400: #4caf50;
  --green-300: #66bb6a;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --teal-500: #14b8a6;
  --shadow-glow: 0 20px 60px rgba(16, 185, 129, 0.4);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
* { box-sizing: border-box; }

html, body { 
  margin: 0; 
  padding: 0; 
  background: var(--bg-dark);
  color: var(--text-primary); 
  font-family: "Noto Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

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

/* ===== Background Effects ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(5, 150, 105, 0.08) 0%, transparent 50%);
  animation: meshMove 25s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes meshMove {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05) translate(2%, 2%); opacity: 0.8; }
}

/* ===== Layout ===== */
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ===== Header ===== */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: linear-gradient(135deg, rgba(13, 40, 24, 0.95), rgba(27, 77, 32, 0.98));
  backdrop-filter: blur(20px); 
  border-bottom: 1px solid rgba(102, 187, 106, 0.2);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.site-header .container { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 18px 0; 
}

.logo { 
  font-weight: 700; 
  font-size: 1.35rem; 
  letter-spacing: 1px; 
  background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.site-nav { display: flex; gap: 8px; }

.site-nav .nav-link { 
  color: var(--text-light); 
  text-decoration: none; 
  padding: 10px 16px; 
  border-radius: 12px; 
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--emerald-500);
  transform: translateX(-50%);
  transition: width 0.3s var(--transition-smooth);
}

.site-nav .nav-link:hover { 
  color: var(--emerald-300); 
  transform: translateY(-2px);
}

.site-nav .nav-link:hover::after { width: 80%; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--emerald-400);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .site-nav { 
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 40, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
    border-bottom: 1px solid rgba(102, 187, 106, 0.2);
  }
  
  .site-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .mobile-menu-toggle { display: flex; }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* ===== Hero Section ===== */
.hero { 
  position: relative; 
  min-height: 85vh; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media { 
  position: absolute; 
  inset: 0; 
}

.hero-img { 
  width: 120%; 
  max-width: none; 
  height: 110%; 
  object-fit: cover; 
  will-change: transform;
  filter: brightness(0.8) saturate(1.2);
}

.hero-overlay-full {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, 
    rgba(13, 40, 24, 0.3) 0%, 
    rgba(27, 77, 32, 0.5) 40%,
    rgba(13, 40, 24, 0.6) 100%);
  z-index: 1;
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  display: grid; 
  place-items: center; 
  text-align: center; 
  padding: 20px; 
  width: 100%;
  max-width: 900px;
}

.hero-title { 
  color: #fff; 
  font-weight: 700; 
  font-size: clamp(2rem, 5vw, 4rem); 
  line-height: 1.1; 
  margin: 0; 
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.5), 0 2px 8px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #ffffff, #d7fce8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle { 
  color: var(--text-accent); 
  margin: 20px 0 0; 
  font-weight: 600; 
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.leaf { 
  position: absolute; 
  width: 100px; 
  height: 100px; 
  opacity: 0.5; 
  filter: drop-shadow(0 5px 15px rgba(16, 185, 129, 0.3)); 
  mix-blend-mode: screen;
  pointer-events: none;
}

.leaf-1 { top: 15%; left: 10%; }
.leaf-2 { bottom: 20%; right: 15%; }
.leaf-3 { top: 30%; right: 20%; }

/* ===== Sections ===== */
.section { 
  padding: 80px 0; 
  position: relative;
  background: linear-gradient(180deg, rgba(10, 31, 12, 0.95), rgba(13, 40, 24, 0.98));
}

.section:nth-child(odd) {
  background: linear-gradient(135deg, rgba(13, 40, 24, 0.9), rgba(27, 77, 32, 0.95));
}

.section-title { 
  font-size: clamp(2rem, 3.5vw, 2.8rem); 
  margin: 0 0 12px; 
  font-weight: 700; 
  text-align: center;
  background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.section-subtitle { 
  color: var(--text-accent); 
  margin: 0 0 60px; 
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
}

.subsection-title {
  font-size: 1.8rem;
  margin: 60px 0 30px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider.icons { 
  display: flex; 
  gap: 24px; 
  justify-content: center; 
  margin-top: 24px; 
  margin-bottom: 32px;
}

.icon { 
  width: 28px; 
  height: 28px; 
  color: var(--emerald-300); 
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.5));
}

/* ===== Buttons & Actions ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--emerald-500);
  color: var(--emerald-400);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  color: white;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 8px 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: white;
  color: var(--green-900);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.85rem;
}

.btn-text {
  color: var(--emerald-400);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.btn-text:hover {
  color: var(--emerald-300);
  gap: 10px;
}

.btn-block {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-300);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-block:hover {
  background: var(--emerald-600);
  color: white;
}

.btn-icon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--emerald-400);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-icon:hover {
  background: var(--emerald-600);
  color: white;
}

.btn-secondary {
  background: var(--bg-medium);
  color: var(--emerald-300);
  border: 1px solid var(--emerald-600);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--emerald-600);
  color: white;
}

/* ===== Content Grid ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 0; /* Clear padding for inner layout */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s var(--transition-smooth);
}

.card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.card-body {
  padding: 20px 24px;
  flex-grow: 1;
}

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  background: rgba(0,0,0,0.1);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.2));
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.info-card h3 {
  color: var(--emerald-400);
  margin: 0;
  font-size: 1.35rem;
  text-align: left;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-300);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(5px);
}

.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--emerald-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

/* Accordion */
.accordion {
  margin-top: 20px;
}

.accordion-item {
  margin-bottom: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(13, 40, 24, 0.5);
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--emerald-400);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.accordion-header:hover {
  background: rgba(16, 185, 129, 0.1);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 20px 20px;
}

.accordion-content p {
  color: var(--text-light);
  margin: 8px 0;
  line-height: 1.6;
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(16, 185, 129, 0.15));
  border: 2px dashed rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  margin: 16px 0;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-400);
  margin-bottom: 16px;
}

/* Admin Structure */
.admin-structure {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.admin-level {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--emerald-500);
  padding: 16px;
  border-radius: 8px;
}

.admin-level h4 {
  color: var(--emerald-400);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.admin-level p {
  color: var(--text-light);
  margin: 0;
}

/* Bio Tabs */
.bio-tabs {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-400);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.tab-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.25));
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s;
}

.tab-content.active {
  display: block;
}

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

.tab-content h3 {
  color: var(--emerald-300);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.flora-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bio-card .card-desc {
  padding: 0 20px 20px;
  color: var(--text-light);
  text-align: center;
  font-size: 0.95rem;
}

.info-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}

.info-box p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Fauna Categories */
.fauna-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.fauna-category {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.fauna-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.2);
}

.fauna-category h4 {
  color: var(--emerald-400);
  font-size: 1.4rem;
  margin: 0 0 20px;
}

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

.fauna-category li {
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  font-size: 1rem;
}

.fauna-category li:last-child {
  border-bottom: none;
}

/* Zones */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.zone-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.18));
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.25);
}

.zone-card h4 {
  color: var(--emerald-400);
  font-size: 1.5rem;
  margin: 0 0 16px;
}

.zone-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.zone-card ul {
  color: var(--text-light);
  padding-left: 24px;
  margin: 16px 0;
}

.zone-card li {
  margin-bottom: 8px;
}

.zone-rule {
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid var(--emerald-500);
  padding: 12px;
  margin-top: 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--emerald-300);
}

/* Grid & Cards */
.grid.cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap: 24px; 
}

.card {
  position: relative; 
  border-radius: 16px; 
  overflow: hidden; 
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.1));
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); 
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  flex-direction: column;
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow-glow);
  border-color: var(--emerald-500);
}

.card-media { 
  aspect-ratio: 16/10; 
  overflow: hidden; 
  background: var(--bg-medium);
  position: relative;
}

.card-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s var(--transition-smooth); 
}

.card:hover .card-media img { 
  transform: scale(1.1); 
}

.card-overlay-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s;
  backdrop-filter: blur(4px);
}

.card:hover .card-overlay-btn {
  transform: translateY(0);
}

.card-content {
  padding: 16px;
  background: rgba(13, 40, 24, 0.6);
  flex-grow: 1;
}

.card-title { 
  margin: 0;
  font-weight: 700; 
  color: #fff; 
  font-size: 1.1rem;
}

.card-meta {
  color: var(--emerald-400);
  font-size: 0.85rem;
  margin-top: 4px;
}

.card-details {
  padding: 16px;
}

.scientific-name {
  font-style: italic;
  color: var(--emerald-300);
  font-size: 0.9rem;
  margin: 4px 0 8px;
}

.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.status-badge.endangered {
  background: rgba(220, 38, 38, 0.8);
  border-color: rgba(239, 68, 68, 0.5);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header-row h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--emerald-300);
}

.info-box-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 20px;
}

.icon-large {
  font-size: 2.5rem;
}

.info-box h4 {
  margin: 0 0 8px;
  color: var(--emerald-400);
}

/* Habitat Cards */
.habitat-card { 
  height: 260px; 
  background: rgba(13, 40, 24, 0.8); 
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  transition: all 0.5s var(--transition-smooth);
  cursor: pointer;
}

.habitat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.habitat-bg { 
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-position: center; 
  transition: transform 0.6s var(--transition-smooth); 
  filter: brightness(0.7) saturate(1.2);
}

.habitat-card:hover .habitat-bg { 
  transform: scale(1.1); 
  filter: brightness(0.9) saturate(1.4);
}

.habitat-overlay {
  position: absolute; 
  inset: 0; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 1;
  padding: 24px;
}

.habitat-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  text-align: center;
}

/* Research Updates */
.list-content {
  flex-grow: 1;
}

.research-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-footer-action {
  padding: 16px 24px 0;
  margin-top: 16px;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  text-align: right;
}

/* Research Section */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.research-category {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.research-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(16, 185, 129, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-icon {
  font-size: 2.5rem;
}

.category-header h3 {
  color: var(--emerald-400);
  margin: 0;
  font-size: 1.5rem;
}

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

.research-list li {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--emerald-500);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.research-list li:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateX(4px);
}

.research-list strong {
  color: var(--emerald-300);
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.research-list p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tourism Section */
.tourism-content {
  margin-top: 40px;
}

.tourist-spots-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tourist-card .card-desc {
  padding: 0 20px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tourist-features {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.tourist-features span {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-300);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.rules-regulations {
  margin-top: 60px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.rule-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.rule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.2);
}

.rule-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.rule-card h4 {
  color: var(--emerald-400);
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.rule-card li {
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.rule-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-400);
  font-weight: 700;
}

.gallery-section {
  margin-top: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Governance Section */
.governance-content {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.governance-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
}

.governance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.2);
}

.governance-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.governance-card h3 {
  color: var(--emerald-400);
  font-size: 1.8rem;
  margin: 0 0 24px;
  text-align: center;
}

.laws-list, .projects-grid {
  display: grid;
  gap: 20px;
}

.law-item, .project-item {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--emerald-500);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.law-item:hover, .project-item:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateX(4px);
}

.law-item h4, .project-item h4 {
  color: var(--emerald-300);
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.law-item p, .project-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.project-status {
  display: inline-block;
  background: var(--emerald-600);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
}

.admin-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.admin-box {
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid var(--emerald-500);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.admin-box h4 {
  color: var(--emerald-400);
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.admin-box p {
  color: var(--text-light);
  margin: 0;
}

.admin-arrow {
  font-size: 2rem;
  color: var(--emerald-500);
}

.contact-info {
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

.contact-info p {
  color: var(--text-light);
  margin: 8px 0;
}

.contact-info strong {
  color: var(--emerald-300);
}

/* Media Section */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

.media-category h3 {
  color: var(--emerald-400);
  font-size: 1.8rem;
  margin: 0 0 24px;
}

.news-list {
  display: grid;
  gap: 20px;
}

.news-item {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.2);
}

.news-date {
  display: inline-block;
  background: var(--emerald-600);
  color: white;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-item h4 {
  color: var(--emerald-300);
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.news-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.documentaries-list {
  display: grid;
  gap: 24px;
}

.doc-item {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.doc-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.2);
}

.doc-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.doc-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.doc-item:hover .doc-thumbnail img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s;
}

.doc-item:hover .play-icon {
  background: var(--emerald-500);
  transform: translate(-50%, -50%) scale(1.1);
}

.doc-item h4 {
  color: var(--emerald-300);
  padding: 16px 20px 8px;
  margin: 0;
  font-size: 1.1rem;
}

.doc-item p {
  color: var(--text-light);
  padding: 0 20px 20px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.site-footer { 
  border-top: 1px solid rgba(16, 185, 129, 0.2); 
  padding: 60px 0 40px; 
  background: linear-gradient(to bottom, rgba(10, 31, 12, 0.95), rgba(13, 40, 24, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--emerald-400);
  font-size: 1.3rem;
  margin: 0 0 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--emerald-300);
  transform: translateX(4px);
}

.contact-details p {
  color: var(--text-light);
  margin: 8px 0;
  line-height: 1.6;
}

.contact-details strong {
  color: var(--emerald-300);
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.7;
}

.footer-text { 
  color: var(--text-accent); 
  text-align: center; 
  margin: 16px 0 0; 
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Animations */
.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
}

.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth); 
}

@keyframes sparkleUp {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-50px) scale(1.5); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: rgba(10, 31, 12, 0.9); }
::-webkit-scrollbar-thumb { 
  background: linear-gradient(180deg, #059669, #10b981);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #10b981, #34d399); }

/* Mobile Optimizations */
@media (max-width: 640px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .fauna-categories, .zones-grid, .research-grid, .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
}