/* Wildlife Guide Main Styles */
:root {
  /* Primary Color Palette - Natural Wildlife Theme */
  --primary-forest: #1b3e11;
  --primary-sage: #829b67;
  --primary-earth: #9c300a;
  --primary-sky: #3473a7;
  --primary-sunset: #e26d31;
  
  /* Light Shades */
  --light-forest: #3b6b29;
  --light-sage: #a2be7b;
  --light-earth: #b67747;
  --light-sky: #93dbef;
  --light-sunset: #e8cf9a;
  
  /* Dark Shades */
  --dark-forest: #0e1c07;
  --dark-sage: #627a54;
  --dark-earth: #593715;
  --dark-sky: #263f40;
  --dark-sunset: #794b16;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.3rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 16px;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-forest);
  background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1.07rem;
  color: var(--primary-forest);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1.07rem;
  color: var(--dark-sage);
}

/* Conservative Navbar Brand Size */
.navbar-brand {
  font-size: 1.44rem !important;
  font-weight: 700;
  color: var(--primary-sky) !important;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-forest), var(--light-forest));
  padding: 1rem 0;
  box-shadow: 0 4px 13px rgba(27, 64, 13, 0.10);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-sage) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../NUN_images/hero-wildlife.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1.71rem;
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  margin-bottom: 1.07rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2.11rem;
  opacity: 0.8;
}

/* Decorative Shape */
.hero-shape {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: var(--primary-sunset);
  border-radius: 50% 30% 70% 40%;
  opacity: 0.1;
  z-index: 1;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3.19rem;
}

.section-title h2 {
  color: var(--primary-forest);
  margin-bottom: 1.07rem;
}

.section-title .subtitle {
  color: var(--primary-sage);
  font-size: var(--font-size-large);
  margin-bottom: 1.07rem;
}

.section-title .description {
  color: var(--dark-sage);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: linear-gradient(45deg, #f8f9fa, #ededed);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 2.11rem;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-sage);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  color: var(--primary-forest);
  margin-bottom: 1.07rem;
}

.feature-card p {
  color: var(--dark-sage);
  margin: 0;
}

/* Services Section */
.services-section {
  background: var(--light-sage);
  background: linear-gradient(135deg, var(--light-sage), white);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-14px);
  border-color: var(--primary-sage);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.71rem;
}

.service-card h4 {
  color: var(--primary-forest);
  margin-bottom: 1.07rem;
}

.service-price {
  font-size: 1.86rem;
  font-weight: 700;
  color: var(--primary-sunset);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--dark-sage);
}

/* Team Section */
.team-section {
  background: linear-gradient(45deg, var(--light-earth), #f8f9fa);
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.71rem;
  border: 4px solid var(--primary-sage);
}

.team-member h4 {
  color: var(--primary-forest);
  margin-bottom: 0.63rem;
}

.team-member .role {
  color: var(--primary-sage);
  font-weight: 500;
}

/* Reviews/Testimonials */
.reviews-section {
  background: var(--primary-forest);
  color: white;
}

.reviews-section .section-title h2,
.reviews-section .section-title .subtitle,
.reviews-section .section-title .description {
  color: white;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-bottom: 2.11rem;
}

.review-card .quote {
  font-style: italic;
  margin-bottom: 1.07rem;
  font-size: var(--font-size-large);
}

.review-card .author {
  font-weight: 600;
  color: var(--light-sage);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #f8f9fa, var(--light-sky));
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2.11rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-sunset);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-section {
  counter-reset: step-counter;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 1.07rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-sage);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-sage);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--dark-forest);
}

.faq-answer.active {
  display: block;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(45deg, var(--light-sunset), #f8f9fa);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card h4 {
  color: var(--primary-forest);
  margin-bottom: 1.07rem;
}

.blog-card p {
  color: var(--dark-sage);
  margin-bottom: 1.71rem;
}

.blog-card .btn {
  background: var(--primary-sage);
  border: none;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.blog-card .btn:hover {
  background: var(--dark-sage);
  color: white;
}

/* Gallery Section */
.gallery-section {
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.07rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-earth), var(--light-earth));
  color: white;
}

.contact-section .section-title h2,
.contact-section .section-title .subtitle,
.contact-section .section-title .description {
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.71rem;
}

.contact-form .btn-submit {
  background: var(--primary-sunset);
  border: none;
  color: white;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-form .btn-submit:hover {
  background: var(--dark-sunset);
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-info h4 {
  color: white;
  margin-bottom: 1.71rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.07rem;
}

/* Footer */
.footer {
  background: var(--dark-forest);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-sage);
  margin-bottom: 1.71rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: var(--light-sage);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.23rem;
  padding-top: 2.20rem;
  text-align: center;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 400px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet-active {
  background: var(--primary-sage) !important;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--light-sage);
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .swiper {
    overflow: hidden;
  }
}

/* Utility Classes */
.text-primary { color: var(--primary-forest) !important; }
.text-sage { color: var(--primary-sage) !important; }
.text-earth { color: var(--primary-earth) !important; }
.text-sunset { color: var(--primary-sunset) !important; }

.bg-primary { background-color: var(--primary-forest) !important; }
.bg-sage { background-color: var(--primary-sage) !important; }
.bg-earth { background-color: var(--primary-earth) !important; }
.bg-sunset { background-color: var(--primary-sunset) !important; }

/* Button Styles */
.btn-primary {
  background: var(--primary-forest);
  border-color: var(--primary-forest);
}

.btn-primary:hover {
  background: var(--dark-forest);
  border-color: var(--dark-forest);
}

.btn-sage {
  background: var(--primary-sage);
  border-color: var(--primary-sage);
  color: white;
}

.btn-sage:hover {
  background: var(--dark-sage);
  border-color: var(--dark-sage);
  color: white;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
