:root {
  --primary: #FF6B35;
  --primary-dark: #E85A24;
  --secondary: #2D5016;
  --dark: #0D1B0E;
  --dark-accent: #162117;
  --light: #F8F4E8;
  --gold: #D4A853;
  --stripe: #1A1A1A;
  --gradient-jungle: linear-gradient(135deg, #0D1B0E 0%, #1A3A1A 50%, #0D1B0E 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

.jungle-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(45, 80, 22, 0.3);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 0.6;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(13, 27, 14, 0.95), transparent);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 27, 14, 0.98);
  padding: 1rem 5%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-donate {
  background: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease !important;
}

.nav-donate::after {
  display: none !important;
}

.nav-donate:hover {
  background: var(--primary-dark);
  color: var(--light) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--light);
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1561731216-c3a4d99437d5?w=1920&h=1080&fit=crop') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 14, 0.9) 0%,
    rgba(13, 27, 14, 0.7) 50%,
    rgba(13, 27, 14, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 3rem;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
  color: var(--primary);
  text-shadow: 0 0 60px rgba(255, 107, 53, 0.5);
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(248, 244, 232, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(248, 244, 232, 0.3);
}

.btn-secondary:hover {
  border-color: var(--light);
  background: rgba(248, 244, 232, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s forwards;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(248, 244, 232, 0.5);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(248, 244, 232, 0.6);
  letter-spacing: 1px;
}

.jungle-vines {
  position: absolute;
  width: 200px;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 400'%3E%3Cpath d='M50 0 Q30 100 50 200 Q70 300 50 400' stroke='%232D5016' stroke-width='8' fill='none' opacity='0.3'/%3E%3Ccircle cx='45' cy='50' r='15' fill='%232D5016' opacity='0.2'/%3E%3Ccircle cx='55' cy='150' r='20' fill='%232D5016' opacity='0.15'/%3E%3Ccircle cx='40' cy='280' r='18' fill='%232D5016' opacity='0.2'/%3E%3C/svg%3E") repeat-y;
  opacity: 0.5;
  pointer-events: none;
}

.jungle-vines.left {
  left: 0;
  top: 0;
}

.jungle-vines.right {
  right: 0;
  top: 0;
  transform: scaleX(-1);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag.center {
  display: block;
  text-align: center;
}

.section-tag.light {
  color: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title.center {
  text-align: center;
}

.section-title.light {
  color: var(--light);
}

.section-text {
  font-size: 1.1rem;
  color: rgba(248, 244, 232, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(248, 244, 232, 0.8);
  font-size: 1.1rem;
}

.section-intro.light {
  color: rgba(248, 244, 232, 0.9);
}

.about {
  padding: 8rem 0;
  position: relative;
  background: var(--gradient-jungle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  inset: -20px;
  border: 3px solid var(--primary);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.5;
}

.tiger-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(248, 244, 232, 0.7);
  margin-top: 0.5rem;
}

.floating-leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 80, 22, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.history {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--dark);
  z-index: 1;
}

.timeline-content {
  background: var(--dark-accent);
  padding: 2rem;
  border-radius: 15px;
  max-width: 400px;
  margin-right: 3rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 0;
  margin-left: 3rem;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--light);
}

.timeline-content p {
  font-size: 0.95rem;
  color: rgba(248, 244, 232, 0.75);
  line-height: 1.7;
}

.crisis {
  padding: 8rem 0;
  background: var(--gradient-jungle);
  position: relative;
  overflow: hidden;
}

.crisis-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60 Z' fill='none' stroke='%23FF6B35' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.threats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.threat-card {
  background: rgba(22, 33, 23, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.threat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.threat-card:hover::before {
  transform: scaleX(1);
}

.threat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.threat-icon svg {
  width: 100%;
  height: 100%;
}

.threat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.threat-card p {
  color: rgba(248, 244, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.threat-stat {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.threat-stat .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.threat-stat span:not(.stat-value) {
  font-size: 0.85rem;
  color: rgba(248, 244, 232, 0.6);
}

.gallery {
  padding: 8rem 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 14, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: block;
}

.gallery-overlay .photo-credit {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(248, 244, 232, 0.7);
  margin-top: 0.5rem;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.gallery-attribution {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 244, 232, 0.6);
  margin-top: 2rem;
  font-style: italic;
}

.donate {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.donate-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B0E 0%, #1A3A1A 30%, #0D1B0E 60%, #162117 100%);
}

.donate-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L90 50 L50 90 L10 50 Z' fill='none' stroke='%23FF6B35' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E");
}

.donate .section-container {
  position: relative;
  z-index: 1;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.org-card {
  background: rgba(22, 33, 23, 0.9);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.org-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(22, 33, 23, 0.95) 0%, rgba(45, 80, 22, 0.2) 100%);
}

.org-ribbon {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--primary);
  color: var(--light);
  padding: 0.5rem 3rem;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.org-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.org-header {
  margin-bottom: 1rem;
}

.org-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.org-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--light);
}

.org-card > p {
  color: rgba(248, 244, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.org-impact {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.impact-title {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.org-impact ul {
  list-style: none;
}

.org-impact li {
  color: rgba(248, 244, 232, 0.8);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.org-impact li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.btn-donate {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.btn-donate:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.facts {
  padding: 8rem 0;
  background: var(--dark-accent);
  overflow: hidden;
}

.facts-carousel {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.facts-carousel::-webkit-scrollbar {
  height: 8px;
}

.facts-carousel::-webkit-scrollbar-track {
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
}

.facts-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.fact-card {
  flex: 0 0 350px;
  background: var(--dark);
  padding: 2.5rem;
  border-radius: 20px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.fact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

.fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 107, 53, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.fact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.fact-card p {
  color: rgba(248, 244, 232, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer {
  background: linear-gradient(to bottom, var(--dark), #050A05);
  padding: 5rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(248, 244, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 350px;
}

.footer-links h4,
.footer-message h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(248, 244, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-message p {
  color: rgba(248, 244, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-message .disclaimer {
  font-size: 0.85rem;
  color: rgba(248, 244, 232, 0.5);
  font-style: italic;
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(248, 244, 232, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 1200px) {
  .threats-grid,
  .org-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu {
    display: flex;
    z-index: 1001;
  }
  
  .threats-grid,
  .org-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  
  .tiger-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .fact-card {
    flex: 0 0 280px;
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}