/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* CSS Variables for colors */
:root {
  --nature-green: #4a5d41;
  --nature-green-light: #5a6d51;
  --nature-green-dark: #3a4d31;
  --nature-beige: #F5E6D3;
  --nature-beige-light: #FAF1E4;
  --nature-gold: #D4AF37;
  --nature-gold-light: #E8C547;
}

/* Utility classes */
.min-h-screen { min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.bg-white { background-color: white; }
.text-white { color: white; }

/* Colors */
.bg-nature-beige-light { background-color: var(--nature-beige-light); }
.bg-nature-green { background-color: var(--nature-green); }
.text-nature-green { color: var(--nature-green); }
.text-nature-green-dark { color: var(--nature-green-dark); }
.text-nature-gold { color: var(--nature-gold); }
.text-nature-beige-light { color: var(--nature-beige-light); }

/* Navigation */
.navigation {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(74, 93, 65, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

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

.logo img {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--nature-green);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--nature-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--nature-green-light);
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  width: 16rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(74, 93, 65, 0.1);
  padding: 0.5rem 0;
  z-index: 50;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--nature-green);
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: var(--nature-beige-light);
  color: var(--nature-green-light);
}

.dropdown-submenu {
  margin-left: 1rem;
}

.dropdown-submenu .dropdown-item {
  font-size: 0.875rem;
  color: rgba(74, 93, 65, 0.8);
  padding: 0.25rem 1rem;
}

.chevron-down {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

.nav-item:hover .chevron-down {
  transform: rotate(180deg);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--nature-green);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid rgba(74, 93, 65, 0.1);
  padding: 0.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  color: var(--nature-green);
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  background-color: var(--nature-beige-light);
}

.mobile-submenu {
  margin-left: 1rem;
}

.mobile-submenu a {
  font-size: 0.875rem;
  color: rgba(74, 93, 65, 0.8);
}

.mobile-subsubmenu {
  margin-left: 2rem;
}

.mobile-subsubmenu a {
  font-size: 0.75rem;
  color: rgba(74, 93, 65, 0.6);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  background: var(--nature-green);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

.hero-button:hover {
  background: var(--nature-green-light);
  transform: scale(1.05);
}

/* Decorative elements */
.leaf-decoration {
  position: absolute;
  color: var(--nature-beige);
  animation: float 3s ease-in-out infinite;
}

.leaf-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.3;
}

.leaf-2 {
  top: 5rem;
  right: 5rem;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.2;
  animation-delay: 1s;
}

.leaf-3 {
  bottom: 5rem;
  left: 8rem;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.25;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Bottom curve */
.bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  transform: translateY(1px);
}

.bottom-curve svg {
  width: 100%;
  height: 100%;
}

/* Main content */
.main-content {
  background: var(--nature-beige-light);
  padding: 3rem 0;
}

.content-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.content-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.content-text {
  color: var(--nature-green-dark);
}

.content-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--nature-green);
  margin-bottom: 1rem;
}

.content-paragraph {
  color: var(--nature-green-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Why Choose Section */
.why-choose {
  padding: 5rem 0;
  background: var(--nature-beige-light);
  position: relative;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--nature-green);
  margin-bottom: 1.5rem;
}

.why-choose-subtitle {
  font-size: 1.25rem;
  color: rgba(74, 93, 65, 0.8);
  max-width: 32rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.feature-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.feature-icon {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--nature-beige);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nature-green);
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(74, 93, 65, 0.7);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin-top: 4rem;
}

.cta-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 32rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nature-green);
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(74, 93, 65, 0.7);
  margin-bottom: 1.5rem;
}

.cta-button {
  background: var(--nature-green);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: var(--nature-green-light);
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--nature-green);
  color: white;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.footer-logo {
  width: 5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.footer-description {
  color: var(--nature-beige-light);
  line-height: 1.6;
}

.footer-contact h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-text {
  color: var(--nature-beige-light);
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--nature-gold);
}

.footer-bottom {
  border-top: 1px solid var(--nature-green-light);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--nature-beige-light);
}

/* Responsive design */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .bottom-curve {
    height: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-contact {
    text-align: right;
  }
  
  .contact-item {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .bottom-curve {
    height: 80px;
    display: block;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* SVG Icons */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* Animal Cards */
.animal-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.animal-image {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--nature-green);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(74, 93, 65, 0.8);
}

/* Content Section */
.content-section {
  margin-bottom: 3rem;
}

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.link-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.25rem);
}

.link-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.link-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nature-green);
  margin-bottom: 1rem;
}

.link-description {
  color: rgba(74, 93, 65, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.link-button {
  background: var(--nature-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.link-button:hover {
  background: var(--nature-green-light);
  transform: scale(1.05);
}

.nav-link.active {
  color: var(--nature-gold);
  font-weight: 600;
}