/* ========================================
   Birds in Sri Lanka - Custom Styles
   ======================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Brand Colors */
  --brand-forest: #1E5631;      /* Primary green - Sri Lankan forest */
  --accent-sky: #6FBEDC;        /* Secondary blue - Sri Lankan sky */
  --sand: #F4E9D6;              /* Background - Sri Lankan sand */
  --earth: #5A3E2B;             /* Text/accents - Sri Lankan earth */
  --muted: #6B7280;             /* Muted text */
  --white: #ffffff;
  --black: #000000;
  
  /* Glass Effects */
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.15);
  
  /* Design System */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --card-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
  --transition: 250ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --footer-height: auto;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
}

/* ========================================
   Base Styles
   ======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--earth);
  background: var(--sand);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-forest);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

a {
  color: var(--brand-forest);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-sky);
}

/* ========================================
   Accessibility
   ======================================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--brand-forest);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 6px;
}

/* Focus styles */
*:focus {
  outline: 2px solid var(--accent-sky);
  outline-offset: 2px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 86, 49, 0.1);
  transition: all var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--brand-forest);
  text-decoration: none;
}

.navbar-logo {
  margin-right: 0.5rem;
}

.brand-text {
  color: var(--brand-forest);
}

.nav-link {
  color: var(--earth);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-forest);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-sky);
  border-radius: 1px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: var(--card-shadow);
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 86, 49, 0.45), rgba(30, 86, 49, 0.05));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Search Widget */
.hero-search {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.search-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Form responsive improvements */
.search-form .form-label {
  font-weight: 600;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.search-form .form-control,
.search-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
  border-color: var(--accent-sky);
  box-shadow: 0 0 0 0.2rem rgba(111, 190, 220, 0.25);
}

.search-form .btn {
  min-height: 40px;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.popular-filters {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.filter-label {
  font-weight: 600;
  color: var(--brand-forest);
  font-size: 0.9rem;
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-size: 0.85rem;
  white-space: nowrap;
}

.filter-pill:hover {
  background: var(--accent-sky);
  color: var(--white);
  border-color: var(--accent-sky);
}

.filter-pill input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

.filter-pill input[type="checkbox"]:checked + span {
  font-weight: 600;
}

/* Responsive improvements for hero search */
@media (max-width: 991.98px) {
  .hero-search {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .search-form {
    padding: 1.5rem;
  }
  
  .search-form .btn {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-search {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .search-form {
    padding: 1rem;
  }
  
  .popular-filters {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .filter-pills {
    gap: 0.25rem;
  }
  
  .filter-pill {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-search {
    margin-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .search-form {
    padding: 0.75rem;
  }
  
  .filter-pills {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-pill {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ========================================
   Modern Buttons
   ======================================== */

.btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(30, 86, 49, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-sky), var(--brand-forest));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(111, 190, 220, 0.4);
}

.btn-outline-primary {
  background: transparent;
  color: var(--brand-forest);
  border: 2px solid var(--brand-forest);
  position: relative;
}

.btn-outline-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover {
  color: var(--white);
  border-color: var(--accent-sky);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.3);
}

.btn-outline-primary:hover::after {
  width: 100%;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--brand-forest);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
  border-radius: 10px;
}

/* ========================================
   Modern Cards
   ======================================== */

.tour-card,
.destination-card,
.species-card,
.blog-card,
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tour-card::before,
.destination-card::before,
.species-card::before,
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-forest), var(--accent-sky));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover,
.destination-card:hover,
.species-card:hover,
.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card:hover::before,
.destination-card:hover::before,
.species-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

.tour-image,
.destination-image,
.species-image,
.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  position: relative;
}

.tour-card:hover .tour-image,
.destination-card:hover .destination-image,
.species-card:hover .species-image,
.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(30, 86, 49, 0.3);
  z-index: 2;
}

.card-body,
.destination-content,
.species-content,
.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-title,
.destination-content h4,
.species-content h4,
.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.tour-card:hover .card-title,
.destination-card:hover .destination-content h4,
.species-card:hover .species-content h4,
.blog-card:hover .blog-title {
  color: var(--accent-sky);
}

.card-text,
.destination-content p,
.species-content p,
.blog-excerpt {
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.tour-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(111, 190, 220, 0.05), rgba(30, 86, 49, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(111, 190, 220, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.meta-item i {
  color: var(--accent-sky);
  width: 18px;
  font-size: 1rem;
}

.tour-actions,
.blog-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.tour-actions .btn,
.blog-actions .btn {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tour-actions .btn::before,
.blog-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.tour-actions .btn:hover::before,
.blog-actions .btn:hover::before {
  left: 100%;
}

/* Why Choose Us Section with Background */
.why-choose-us {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
              url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3), transparent);
  z-index: 1;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

.why-choose-us .section-title {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.why-choose-us .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

/* Stats Highlight */
.stats-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
}

.stats-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.stats-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.stats-badge:hover::before {
  opacity: 0.1;
}

.stats-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.stats-badge:hover .stats-number {
  color: var(--accent-sky);
}

.stats-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.stats-separator {
  color: var(--white);
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite;
}

/* Responsive Stats */
@media (max-width: 768px) {
  .stats-highlight {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stats-badge {
    padding: 1rem 1.5rem;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-separator {
    transform: rotate(90deg);
  }
}

/* Destinations Stats Highlight */
.destinations-stats-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
}

.destinations-stats-badge {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(30, 86, 49, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.destinations-stats-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-sky), var(--brand-forest));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.destinations-stats-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(30, 86, 49, 0.4);
}

.destinations-stats-badge:hover::before {
  opacity: 1;
}

.destinations-stats-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destinations-stats-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.destinations-stats-separator {
  color: var(--brand-forest);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Destinations Stats */
@media (max-width: 768px) {
  .destinations-stats-highlight {
    flex-direction: column;
    gap: 1rem;
  }
  
  .destinations-stats-badge {
    padding: 1rem 1.5rem;
  }
  
  .destinations-stats-number {
    font-size: 2rem;
  }
  
  .destinations-stats-separator {
    transform: rotate(90deg);
  }
}

/* Modern Feature Cards with Background */
.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 86, 49, 0.4);
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--brand-forest);
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.feature-card:hover h4 {
  color: var(--accent-sky);
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ========================================
   Modern Sections
   ======================================== */

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--brand-forest);
  position: relative;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Newsletter section title override */
.newsletter .section-title {
  color: var(--white) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-forest), var(--accent-sky));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ========================================
   Masonry Gallery Layout
   ======================================== */

.gallery-container {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* Masonry-style varying sizes */
.gallery-item:nth-child(1) {
  grid-row: span 2;
  height: 500px;
}

.gallery-item:nth-child(2) {
  grid-row: span 1;
  height: 300px;
}

.gallery-item:nth-child(3) {
  grid-row: span 2;
  height: 450px;
}

.gallery-item:nth-child(4) {
  grid-row: span 1;
  height: 280px;
}

.gallery-item:nth-child(5) {
  grid-row: span 2;
  height: 520px;
}

.gallery-item:nth-child(6) {
  grid-row: span 1;
  height: 320px;
}

.gallery-item:nth-child(7) {
  grid-row: span 1;
  height: 350px;
}

.gallery-item:nth-child(8) {
  grid-row: span 2;
  height: 480px;
}

.gallery-item:nth-child(9) {
  grid-row: span 1;
  height: 290px;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(30, 86, 49, 0.8), 
    rgba(111, 190, 220, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--white);
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

/* Creative Background Elements */
.gallery-container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--accent-sky), transparent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.gallery-container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--brand-forest), transparent);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
}

/* Stagger Animation */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Masonry Layout */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .gallery-item:nth-child(1) { height: 450px; }
  .gallery-item:nth-child(2) { height: 280px; }
  .gallery-item:nth-child(3) { height: 400px; }
  .gallery-item:nth-child(4) { height: 260px; }
  .gallery-item:nth-child(5) { height: 470px; }
  .gallery-item:nth-child(6) { height: 300px; }
  .gallery-item:nth-child(7) { height: 320px; }
  .gallery-item:nth-child(8) { height: 430px; }
  .gallery-item:nth-child(9) { height: 270px; }
}

@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallery-item:nth-child(1) { 
    grid-row: span 2;
    height: 400px; 
  }
  .gallery-item:nth-child(2) { 
    grid-row: span 1;
    height: 250px; 
  }
  .gallery-item:nth-child(3) { 
    grid-row: span 2;
    height: 350px; 
  }
  .gallery-item:nth-child(4) { 
    grid-row: span 1;
    height: 220px; 
  }
  .gallery-item:nth-child(5) { 
    grid-row: span 2;
    height: 420px; 
  }
  .gallery-item:nth-child(6) { 
    grid-row: span 1;
    height: 280px; 
  }
  .gallery-item:nth-child(7) { 
    grid-row: span 1;
    height: 300px; 
  }
  .gallery-item:nth-child(8) { 
    grid-row: span 2;
    height: 380px; 
  }
  .gallery-item:nth-child(9) { 
    grid-row: span 1;
    height: 240px; 
  }
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    grid-row: span 1 !important;
    height: 300px !important;
    margin-bottom: 1rem;
  }
  
  .gallery-item:nth-child(1) { height: 350px; }
  .gallery-item:nth-child(2) { height: 280px; }
  .gallery-item:nth-child(3) { height: 320px; }
  .gallery-item:nth-child(4) { height: 260px; }
  .gallery-item:nth-child(5) { height: 380px; }
  .gallery-item:nth-child(6) { height: 290px; }
  .gallery-item:nth-child(7) { height: 310px; }
  .gallery-item:nth-child(8) { height: 340px; }
  .gallery-item:nth-child(9) { height: 270px; }
}

/* ========================================
   Modern Testimonials
   ======================================== */

.testimonial-card {
  background: linear-gradient(135deg, var(--white), rgba(111, 190, 220, 0.02));
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 4rem;
  color: var(--accent-sky);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.stars {
  color: #ffc107;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 2rem;
  color: var(--accent-sky);
  position: absolute;
  top: -10px;
  left: -15px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(111, 190, 220, 0.1);
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-sky);
  box-shadow: 0 4px 12px rgba(111, 190, 220, 0.3);
}

.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-forest);
  font-weight: 700;
}

.author-info p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 500;
}

/* ========================================
   Testimonials Carousel
   ======================================== */

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--accent-sky), transparent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--brand-forest), transparent);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
}

/* Carousel Styling */
#testimonialsCarousel {
  position: relative;
  z-index: 2;
}

.carousel-indicators {
  bottom: -60px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(30, 86, 49, 0.3);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--brand-forest);
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid var(--brand-forest);
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--brand-forest);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--brand-forest);
  width: 20px;
  height: 20px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--white);
}

/* Carousel Animation */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: -20px;
  }
  
  .carousel-control-next {
    right: -20px;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .author-photo {
    width: 60px;
    height: 60px;
  }
}

/* ========================================
   Tours Page
   ======================================== */

.tours-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.tours-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tours-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tours-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.tours-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.tours-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tours-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tours-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Filters Section */
.filters-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filters-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-form .form-label {
  font-weight: 600;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
}

.filters-form .form-control,
.filters-form .form-select {
  border: 2px solid rgba(30, 86, 49, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.filters-form .form-control:focus,
.filters-form .form-select:focus {
  border-color: var(--brand-forest);
  box-shadow: 0 0 0 0.2rem rgba(30, 86, 49, 0.25);
}

/* Tours Grid */
.tours-grid {
  background: var(--white);
}

.sort-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sort-options .form-label {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--brand-forest);
}

.sort-options .form-select {
  border: 2px solid rgba(30, 86, 49, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

/* Tour Cards */
.tour-item {
  animation: fadeInUp 0.6s ease-out;
}

.tour-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.tour-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-badges .badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-badges .badge.featured {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: var(--white);
}

.tour-badges .badge.type {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-forest);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-content {
  padding: 2rem;
}

.tour-header {
  margin-bottom: 1.5rem;
}

.tour-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-rating .stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.tour-rating .rating-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.tour-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.tour-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.detail-item i {
  color: var(--accent-sky);
  width: 16px;
  text-align: center;
}

.tour-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(111, 190, 220, 0.1);
  color: var(--accent-sky);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.price-currency {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-forest);
}

.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.tour-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/* No Results */
.no-results {
  padding: 4rem 2rem;
  text-align: center;
}

.no-results i {
  opacity: 0.5;
}

.no-results h3 {
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

/* Tours CTA */
.tours-cta {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
}

.tours-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tours-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive Tours */
@media (max-width: 991.98px) {
  .tour-details {
    grid-template-columns: 1fr;
  }
  
  .tour-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .tour-actions {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .tours-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .tours-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .filters-form {
    padding: 1.5rem;
  }
  
  .sort-options {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .tour-content {
    padding: 1.5rem;
  }
  
  .tour-actions {
    flex-direction: column;
  }
  
  .tour-actions .btn {
    width: 100%;
  }
}

/* ========================================
   Destinations Page
   ======================================== */

.destinations-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.destinations-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.destinations-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.destinations-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.destinations-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.destinations-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destinations-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.destinations-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Birding Section */
.about-birding {
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.02), rgba(111, 190, 220, 0.02));
  position: relative;
  overflow: hidden;
}

.about-birding::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--accent-sky), transparent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.about-birding::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--brand-forest), transparent);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.info-card:hover::before {
  opacity: 0.05;
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 86, 49, 0.4);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.info-card:hover h3 {
  color: var(--accent-sky);
}

.info-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.info-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card ul li:last-child {
  border-bottom: none;
}

.info-card ul li strong {
  color: var(--brand-forest);
  font-weight: 700;
}

/* Stats Section */
.stats-section {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  opacity: 0.05;
  z-index: 1;
}

.stats-section h3 {
  position: relative;
  z-index: 2;
  color: var(--brand-forest);
  font-weight: 700;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive About Birding */
@media (max-width: 991.98px) {
  .info-card {
    padding: 2rem;
  }
  
  .info-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .stats-section {
    padding: 2rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .info-card {
    padding: 1.5rem;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stats-section {
    padding: 1.5rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Destinations Grid */
.destinations-grid {
  background: var(--white);
}

.view-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.view-options .btn-group .btn {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.view-options .btn-group .btn.active {
  background: var(--brand-forest);
  border-color: var(--brand-forest);
  color: var(--white);
}

/* Destination Cards */
.destination-item {
  animation: fadeInUp 0.6s ease-out;
}

.destination-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.destination-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.destination-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.destination-badges .badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destination-badges .badge.unesco {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: var(--white);
}

.destination-badges .badge.difficulty {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-forest);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-content {
  padding: 2rem;
}

.destination-header {
  margin-bottom: 1.5rem;
}

.destination-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.destination-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.destination-location i {
  color: var(--accent-sky);
}

.destination-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.destination-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.destination-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.destination-stats .stat-item i {
  color: var(--accent-sky);
  width: 16px;
  text-align: center;
}

.destination-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.destination-features .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(111, 190, 220, 0.1);
  color: var(--accent-sky);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.destination-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.destination-rating .stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.destination-rating .rating-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.destination-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.destination-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Map Section */
.destinations-map {
  background: var(--light);
}

.map-container {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  text-align: center;
  padding: 2rem;
}

.map-placeholder i {
  opacity: 0.5;
}

.map-placeholder h4 {
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

/* Destinations CTA */
.destinations-cta {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
}

.destinations-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.destinations-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* List View */
.destinations-container.list-view .destination-item {
  width: 100%;
  margin-bottom: 2rem;
}

.destinations-container.list-view .destination-card {
  display: flex;
  flex-direction: row;
  height: auto;
}

.destinations-container.list-view .destination-image {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.destinations-container.list-view .destination-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.destinations-container.list-view .destination-stats {
  grid-template-columns: repeat(4, 1fr);
}

.destinations-container.list-view .destination-footer {
  margin-top: auto;
}

/* Responsive Destinations */
@media (max-width: 991.98px) {
  .destination-stats {
    grid-template-columns: 1fr;
  }
  
  .destination-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .destination-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .destinations-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .destinations-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .filters-form {
    padding: 1.5rem;
  }
  
  .view-options {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .destination-content {
    padding: 1.5rem;
  }
  
  .destination-actions {
    flex-direction: column;
  }
  
  .destination-actions .btn {
    width: 100%;
  }
  
  .destinations-container.list-view .destination-card {
    flex-direction: column;
  }
  
  .destinations-container.list-view .destination-image {
    width: 100%;
    height: 250px;
  }
}

/* ========================================
   Destination Page
   ======================================== */

.destination-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.destination-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.destination-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.destination-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.destination-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 4rem 0;
}

.breadcrumb-nav {
  margin-bottom: 2rem;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
  opacity: 1;
}

.breadcrumb-item.active {
  color: var(--white);
  opacity: 1;
}

.destination-hero .hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges .badge {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badges .badge.unesco {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: var(--white);
}

.hero-badges .badge.difficulty {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-forest);
}

.hero-badges .badge.season {
  background: rgba(111, 190, 220, 0.9);
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-stats .stat-item i {
  font-size: 1.3rem;
  color: var(--accent-sky);
}

/* Destination Overview */
.destination-overview {
  background: var(--white);
}

.overview-content {
  margin-bottom: 2rem;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}

.key-features h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1.5rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(111, 190, 220, 0.1);
  border-radius: 12px;
  color: var(--accent-sky);
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(111, 190, 220, 0.2);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.2rem;
}

/* Destination Sidebar */
.destination-sidebar {
  position: sticky;
  top: 2rem;
}

.info-card, .rating-card, .cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.info-card:hover, .rating-card:hover, .cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.info-card h3, .rating-card h3, .cta-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1.5rem;
}

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

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item .label {
  font-weight: 600;
  color: var(--muted);
}

.info-item .value {
  font-weight: 700;
  color: var(--brand-forest);
}

.rating-display {
  text-align: center;
}

.rating-display .stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-forest);
  margin-bottom: 0.25rem;
}

.rating-count {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Bird Species Section */
.bird-species {
  background: var(--light);
}

.species-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.species-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.species-image {
  height: 200px;
  overflow: hidden;
}

.species-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.species-content {
  padding: 1.5rem;
}

.species-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
}

.species-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.species-status.endemic {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: var(--white);
}

.species-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Related Tours & Similar Destinations */
.related-tours, .similar-destinations {
  background: var(--white);
}

/* Responsive Destination Page */
@media (max-width: 991.98px) {
  .destination-hero .hero-title {
    font-size: 3rem;
  }
  
  .destination-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .destination-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .destination-hero {
    min-height: 60vh;
  }
  
  .destination-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .destination-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-badges {
    gap: 0.5rem;
  }
  
  .hero-badges .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stats .stat-item {
    font-size: 1rem;
  }
  
  .info-card, .rating-card, .cta-card {
    padding: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
}

/* ========================================
   Species Page
   ======================================== */

.species-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.species-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.species-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.species-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.species-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.species-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.species-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.species-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Species Stats */
.species-stats {
  background: var(--light);
}

.stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 86, 49, 0.4);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Species Grid */
.species-grid {
  background: var(--white);
}

.view-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.view-options .btn-group .btn {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.view-options .btn-group .btn.active {
  background: var(--brand-forest);
  border-color: var(--brand-forest);
  color: var(--white);
}

/* Species Cards */
.species-item {
  animation: fadeInUp 0.6s ease-out;
}

.species-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  position: relative;
}

.species-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.species-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.species-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.species-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.species-badges .badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.species-badges .badge.status-endemic {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: var(--white);
}

.species-badges .badge.status-resident {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: var(--white);
}

.species-badges .badge.status-migratory {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: var(--white);
}

.species-badges .badge.endemic {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-forest);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.species-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.species-card:hover .species-overlay {
  opacity: 1;
}

.species-content {
  padding: 2rem;
}

.species-header {
  margin-bottom: 1.5rem;
}

.species-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.species-scientific {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.species-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.species-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.species-info .info-item i {
  color: var(--accent-sky);
  width: 16px;
  text-align: center;
}

.species-description {
  margin-bottom: 1.5rem;
}

.species-description p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.species-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.species-actions {
  display: flex;
  gap: 0.5rem;
}

.species-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Species Modal */
.species-modal-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.species-modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
}

.species-modal-scientific {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.species-modal-badges .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.species-modal-info {
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row strong {
  color: var(--brand-forest);
  font-weight: 600;
}

.info-row span {
  color: var(--muted);
  font-weight: 500;
}

.species-modal-description h5 {
  color: var(--brand-forest);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.species-modal-description p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Species CTA */
.species-cta {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
}

.species-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.species-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* List View */
.species-container.list-view .species-item {
  width: 100%;
  margin-bottom: 2rem;
}

.species-container.list-view .species-card {
  display: flex;
  flex-direction: row;
  height: auto;
}

.species-container.list-view .species-image {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.species-container.list-view .species-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.species-container.list-view .species-info {
  grid-template-columns: repeat(3, 1fr);
}

.species-container.list-view .species-footer {
  margin-top: auto;
}

/* Responsive Species */
@media (max-width: 991.98px) {
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .species-info {
    grid-template-columns: 1fr;
  }
  
  .species-footer {
    margin-top: 1rem;
  }
  
  .species-actions {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .species-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .species-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .filters-form {
    padding: 1.5rem;
  }
  
  .view-options {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .species-content {
    padding: 1.5rem;
  }
  
  .species-actions {
    flex-direction: column;
  }
  
  .species-actions .btn {
    width: 100%;
  }
  
  .species-container.list-view .species-card {
    flex-direction: column;
  }
  
  .species-container.list-view .species-image {
    width: 100%;
    height: 250px;
  }
  
  .species-container.list-view .species-info {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Gallery Page
   ======================================== */

.gallery-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.gallery-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.gallery-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.gallery-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Stats */
.gallery-stats {
  background: var(--light);
}

.stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 86, 49, 0.4);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Grid Section */
.gallery-grid-section {
  background: var(--white);
}

.view-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.view-options .btn-group .btn {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.view-options .btn-group .btn.active {
  background: var(--brand-forest);
  border-color: var(--brand-forest);
  color: var(--white);
}

/* Gallery Container */
.gallery-container {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

/* Masonry Layout */
.gallery-grid.masonry-layout {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.masonry-layout .gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* Grid Layout */
.gallery-grid.grid-layout {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid.grid-layout .gallery-item {
  height: 300px;
}

/* List Layout */
.gallery-grid.list-layout {
  grid-template-columns: 1fr;
}

.gallery-grid.list-layout .gallery-item {
  display: flex;
  flex-direction: row;
  height: 200px;
  margin-bottom: 1rem;
}

.gallery-grid.list-layout .gallery-image {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.gallery-grid.list-layout .gallery-overlay {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

/* Gallery Items */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(30, 86, 49, 0.8), 
    rgba(111, 190, 220, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.gallery-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-photographer {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-actions {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Gallery Modal */
.gallery-modal-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.gallery-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

.gallery-modal-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.gallery-modal-info {
  margin-bottom: 2rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row strong {
  color: var(--brand-forest);
  font-weight: 600;
}

.info-row span {
  color: var(--muted);
  font-weight: 500;
}

.gallery-modal-actions {
  display: flex;
  gap: 1rem;
}

.gallery-modal-actions .btn {
  flex: 1;
}

/* Gallery CTA */
.gallery-cta {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
}

.gallery-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gallery-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
  .gallery-grid.masonry-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .gallery-grid.grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .gallery-grid.masonry-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallery-grid.grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .view-options {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .gallery-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .gallery-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .filters-form {
    padding: 1.5rem;
  }
  
  .gallery-grid.masonry-layout,
  .gallery-grid.grid-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-grid.list-layout .gallery-item {
    flex-direction: column;
    height: auto;
  }
  
  .gallery-grid.list-layout .gallery-image {
    width: 100%;
    height: 250px;
  }
  
  .gallery-grid.list-layout .gallery-overlay {
    position: relative;
    flex-direction: column;
    padding: 1rem;
  }
  
  .gallery-modal-actions {
    flex-direction: column;
  }
}

/* ========================================
   Contact Page
   ======================================== */

.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.contact-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Info Cards */
.contact-info {
  background: var(--light);
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(30, 86, 49, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 86, 49, 0.4);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--white);
}

.form-container {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-forest);
  box-shadow: 0 0 0 0.2rem rgba(30, 86, 49, 0.25);
}

.form-check-input:checked {
  background-color: var(--brand-forest);
  border-color: var(--brand-forest);
}

.form-check-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-check-label a {
  color: var(--brand-forest);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background: var(--light);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: var(--white);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--brand-forest);
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 86, 49, 0.25);
}

.accordion-body {
  background: var(--white);
  padding: 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
}

.contact-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ========================================
   Blog Page
   ======================================== */

.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.blog-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.blog-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.blog-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.blog-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Blog Grid */
.blog-grid {
  background: var(--white);
}

.view-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.view-options .btn-group .btn {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.view-options .btn-group .btn.active {
  background: var(--brand-forest);
  border-color: var(--brand-forest);
  color: var(--white);
}

/* Blog Cards */
.blog-item {
  animation: fadeInUp 0.6s ease-out;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.category-badge {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-author,
.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-author i,
.blog-date i {
  color: var(--accent-sky);
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--accent-sky);
}

.blog-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
}

.tag {
  background: rgba(30, 86, 49, 0.1);
  color: var(--brand-forest);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Blog Newsletter */
.blog-newsletter {
  background: var(--light);
}

.newsletter-form .input-group {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

.newsletter-form .btn {
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

/* Blog CTA */
.blog-cta {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
}

.blog-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* List View */
.blog-container.list-view .blog-item {
  width: 100%;
  margin-bottom: 2rem;
}

.blog-container.list-view .blog-card {
  display: flex;
  flex-direction: row;
  height: auto;
}

.blog-container.list-view .blog-image {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.blog-container.list-view .blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-container.list-view .blog-footer {
  margin-top: auto;
}

/* Pagination */
.pagination {
  margin: 0;
}

.page-link {
  color: var(--brand-forest);
  border: 2px solid rgba(30, 86, 49, 0.1);
  border-radius: 8px;
  margin: 0 0.25rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: var(--brand-forest);
  color: var(--white);
  border-color: var(--brand-forest);
}

.page-item.active .page-link {
  background: var(--brand-forest);
  border-color: var(--brand-forest);
  color: var(--white);
}

/* Responsive Contact & Blog */
@media (max-width: 991.98px) {
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .blog-actions {
    width: 100%;
  }
  
  .blog-actions .btn {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .contact-hero .hero-title,
  .blog-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero .hero-subtitle,
  .blog-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .filters-form {
    padding: 1.5rem;
  }
  
  .view-options {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .blog-container.list-view .blog-card {
    flex-direction: column;
  }
  
  .blog-container.list-view .blog-image {
    width: 100%;
    height: 250px;
  }
  
  .blog-container.list-view .blog-content {
    flex-direction: column;
  }
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.about-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(111, 190, 220, 0.6));
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.about-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.about-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Our Story Section */
.our-story {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

.our-story .story-content {
  padding-right: 2rem;
}

.our-story .section-title {
  color: var(--brand-forest) !important;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  text-align: left;
}

.our-story .section-title::after {
  left: 0;
  transform: none;
  width: 80px;
}

.our-story .story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.our-story .story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.our-story .story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* Mission & Values Section */
.mission-values {
  padding: 80px 0;
  background: var(--sand);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.team-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.9), rgba(111, 190, 220, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-forest);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent-sky);
  color: var(--white);
  transform: scale(1.1);
}

.team-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: var(--accent-sky);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.specialty-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--sand);
  color: var(--brand-forest);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(30, 86, 49, 0.2);
}

/* Achievements Section */
.achievements {
  padding: 80px 0;
  background: var(--sand);
}

.achievement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* Certifications Section */
.certifications {
  padding: 80px 0;
  background: var(--white);
}

.cert-logo {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  filter: grayscale(100%);
  opacity: 0.7;
}

.cert-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  filter: grayscale(0%);
  opacity: 1;
}

.cert-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* About CTA Section */
.about-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  color: var(--white);
}

.about-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.about-cta .btn-light {
  background: var(--white);
  color: var(--brand-forest);
  border: none;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all var(--transition);
}

.about-cta .btn-light:hover {
  background: var(--sand);
  color: var(--brand-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for About Page */
@media (max-width: 991.98px) {
  .about-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .our-story .story-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .about-cta {
    text-align: center;
  }
  
  .about-cta .col-lg-4 {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .about-cta .btn-light {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    padding-top: 100px;
    margin-top: 20px;
    min-height: 50vh;
  }
  
  .about-hero .hero-title {
    font-size: 2rem;
  }
  
  .about-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-hero .hero-description {
    font-size: 1rem;
  }
  
  .our-story,
  .mission-values,
  .team-section,
  .achievements,
  .certifications {
    padding: 60px 0;
  }
  
  .value-card,
  .team-card,
  .achievement-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    height: 250px;
  }
  
  .about-cta h2 {
    font-size: 2rem;
  }
  
  .about-cta p {
    font-size: 1rem;
  }
  
  .pagination {
    justify-content: center;
  }
  
  .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   Newsletter
   ======================================== */

.newsletter {
  background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
  color: var(--white);
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--brand-forest);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  margin-right: 0.5rem;
}

.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent-sky);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--accent-sky);
  width: 20px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent-sky);
}

.newsletter-signup {
  margin-top: 1.5rem;
}

.newsletter-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.newsletter-form .input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  border-radius: var(--radius);
  border: none;
  padding: 0.75rem;
}

.newsletter-form .btn {
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.trust-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo {
  height: 30px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.trust-logo:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent-sky);
}

/* ========================================
   Floating Elements
   ======================================== */

.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--brand-forest);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-sky);
  transform: translateY(-2px);
}

/* Sticky Booking Bar (Mobile) */
.sticky-booking-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--brand-forest);
  color: var(--white);
  padding: 0.75rem 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-text {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: var(--max-width);
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Medium screens */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .quick-search {
    margin-top: -30px;
    padding: 1.5rem;
  }
  
  .search-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

/* Small screens */
@media (max-width: 767.98px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .hero-section,
  .tours-hero,
  .destinations-hero,
  .destination-hero,
  .species-hero,
  .gallery-hero,
  .contact-hero,
  .blog-hero,
  .about-hero {
    padding-top: 100px;
    margin-top: 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .quick-search {
    margin-top: -20px;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .search-form {
    padding: 1rem;
  }
  
  .popular-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-pills {
    width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-actions {
    flex-direction: column;
  }
  
  .floating-contact {
    bottom: 1rem;
    right: 1rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .card-body,
  .destination-content,
  .species-content,
  .blog-content {
    padding: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* ========================================
   Modern Animations
   ======================================== */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.float {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Stagger animations */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   Modern Lightbox
   ======================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.fade-in {
  opacity: 1;
}

.lightbox.fade-out {
  opacity: 0;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-forest), var(--accent-sky));
  z-index: 10000;
  transition: width 0.1s ease;
}

/* Modern Form Focus States */
.form-control:focus,
.form-select:focus {
  border-color: var(--accent-sky);
  box-shadow: 0 0 0 0.2rem rgba(111, 190, 220, 0.25);
  transform: translateY(-1px);
}

.form-group.focused .form-label {
  color: var(--accent-sky);
  transform: translateY(-2px);
  font-size: 0.9rem;
}

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Notification Styles */
.alert {
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.alert-success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-info {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.05));
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

/* Modern Spinner */
.spinner-border {
  width: 2rem;
  height: 2rem;
  border: 0.25rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/* ========================================
   Blog Page Styles
   ======================================== */

/* Blog Stats Section */
.blog-stats {
    background: linear-gradient(135deg, var(--brand-forest) 0%, var(--accent-sky) 100%);
    position: relative;
    overflow: hidden;
}

.blog-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: white;
}

.stats-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.stats-numbers {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

/* Advanced Filters */
.filters-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advanced-filters-form {
    margin: 0;
}

.filter-group {
    margin-bottom: 0;
}

.filter-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: white;
    border-color: var(--brand-forest);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.3);
}

.search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: var(--brand-forest);
}

.filter-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-select:focus {
    background: white;
    border-color: var(--brand-forest);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.3);
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.btn-filter, .btn-clear {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-filter {
    background: white;
    color: var(--brand-forest);
    border: 1px solid white;
}

.btn-filter:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-clear {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-title-section .section-title {
    color: var(--brand-forest);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.results-count {
    color: var(--brand-forest);
    font-weight: 700;
}

.filter-indicator {
    background: var(--brand-forest);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.blog-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.view-options .btn-group {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.view-options .btn {
    padding: 0.75rem 1rem;
    border: 1px solid var(--brand-forest);
    background: white;
    color: var(--brand-forest);
    transition: all 0.3s ease;
}

.view-options .btn.active,
.view-options .btn:hover {
    background: var(--brand-forest);
    color: white;
    transform: translateY(-1px);
}

.sort-select {
    min-width: 150px;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: var(--brand-forest);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

/* Modern Blog Cards */
.blog-content-wrapper {
    position: relative;
}

.modern-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--brand-forest);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 1.5rem 1.5rem 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-category-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.modern-badge {
    background: linear-gradient(135deg, var(--brand-forest), var(--accent-sky));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.blog-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.modern-card:hover .blog-hover-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.btn-read-more {
    background: white;
    color: var(--brand-forest);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: inline-block;
}

.btn-read-more:hover {
    background: var(--brand-forest);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.quick-actions .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-actions .btn:hover {
    transform: scale(1.1);
}

.reading-time {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-forest);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--brand-forest);
    font-size: 0.9rem;
    line-height: 1.2;
}

.publish-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.blog-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #6c757d;
    gap: 0.25rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title .title-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-title .title-link:hover {
    color: var(--brand-forest);
}

.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-primary {
    background: rgba(30, 86, 49, 0.1);
    color: var(--brand-forest);
}

.tag-secondary {
    background: rgba(111, 190, 220, 0.1);
    color: var(--accent-sky);
}

.tag-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.blog-footer {
    margin-top: auto;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-share {
    display: flex;
    gap: 0.5rem;
}

.social-share .btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-share .btn:hover {
    transform: scale(1.1);
}

/* List View Styles */
.list-view .blog-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.list-view .modern-card {
    flex-direction: row;
    height: 200px;
}

.list-view .blog-image-container {
    flex: 0 0 300px;
    height: 100%;
    border-radius: 1.5rem 0 0 1.5rem;
}

.list-view .blog-content {
    flex: 1;
    padding: 1.5rem;
}

/* Masonry View Styles */
.masonry-view .blog-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}

.masonry-view .modern-card {
    height: auto;
}

/* Animations */
.blog-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-numbers {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .blog-controls {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .filters-container {
        padding: 1.5rem;
    }
    
    .filter-actions {
        flex-direction: row;
        margin-top: 1rem;
    }
    
    .list-view .modern-card {
        flex-direction: column;
        height: auto;
    }
    
    .list-view .blog-image-container {
        flex: none;
        height: 200px;
        border-radius: 1.5rem 1.5rem 0 0;
    }
}

/* ========================================
   Book Now Page Styles
   ======================================== */

.book-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  margin-top: 40px;
}

.book-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.book-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.book-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.book-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.book-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.book-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.book-hero .hero-description {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Booking Process Steps */
.booking-process {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.booking-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.step.active {
  background: var(--brand-forest);
  color: white;
  transform: scale(1.05);
}

.step.completed {
  background: var(--accent-sky);
  color: white;
}

.step:not(.active):not(.completed) {
  background: white;
  color: #6c757d;
  border: 2px solid #dee2e6;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid currentColor;
}

.step-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Booking Form */
.booking-form-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #dee2e6;
}

.booking-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.booking-step.active {
  display: block;
}

.booking-step.completed {
  display: none;
}

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

.step-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f3f4;
}

.step-header h3 {
  color: var(--brand-forest);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-header p {
  color: #6c757d;
  margin: 0;
}

/* Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tour-option {
  position: relative;
}

.tour-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tour-card {
  display: block;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.tour-option input[type="radio"]:checked + .tour-card {
  border-color: #6c757d;
  background: #f8f9fa;
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.15);
  transform: translateY(-2px);
}

.tour-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.tour-content {
  padding: 1.5rem;
}

.tour-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 0.75rem;
}

.tour-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tour-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.detail-item i {
  color: var(--brand-forest);
  width: 16px;
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
}

.price-unit {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--brand-forest);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-forest);
  box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option {
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 2px solid #dee2e6;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.payment-option input[type="radio"]:checked + .payment-card {
  border-color: var(--brand-forest);
  background: rgba(30, 86, 49, 0.05);
}

.payment-card i {
  font-size: 1.5rem;
  color: var(--brand-forest);
}

.payment-card span {
  font-weight: 600;
  color: var(--brand-forest);
}

/* Booking Summary */
.booking-summary {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
}

.booking-summary h4 {
  color: var(--brand-forest);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-forest);
  border-top: 2px solid var(--brand-forest);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

/* Booking Actions */
.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #dee2e6;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #dee2e6;
}

.sidebar-card h4 {
  color: var(--brand-forest);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.sidebar-card h4 i {
  color: var(--accent-sky);
}

.benefits-list,
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li,
.policy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #6c757d;
}

.benefits-list li i,
.policy-list li i {
  color: var(--brand-forest);
  font-size: 0.9rem;
}

.contact-info {
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #6c757d;
}

.contact-item i {
  color: var(--brand-forest);
  width: 20px;
  text-align: center;
}

/* CTA Section */
.booking-cta {
  background: linear-gradient(135deg, var(--brand-forest) 0%, var(--accent-sky) 100%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .booking-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step {
    width: 100%;
    max-width: 400px;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .book-hero {
    padding-top: 100px;
    margin-top: 20px;
  }
  
  .book-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .book-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .booking-form-container {
    padding: 1.5rem;
  }
  
  .payment-methods {
    gap: 0.75rem;
  }
  
  .payment-card {
    padding: 0.75rem 1rem;
  }
  
  .booking-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .booking-actions .btn {
    width: 100%;
  }
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

/* ========================================
   Print Styles
   ======================================== */

@media print {
  .navbar,
  .floating-contact,
  .back-to-top,
  .sticky-booking-bar {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-description {
    color: var(--brand-forest);
    text-shadow: none;
  }
  
  .btn {
    border: 1px solid var(--brand-forest);
    background: transparent;
    color: var(--brand-forest);
  }
}
