:root {
  --primary-color: #d19a47;
  --secondary-color: #b76f2d;
  --dark-color: #f5f1e8;
  --light-color: #000000;
  --accent-color: #f2c86c;
  --accent-red: #e88f3f;
  --text-dark: #f5f1e8;
  --text-light: #d8c5a4;
  --text-muted: rgba(245, 241, 232, 0.7);
}

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

body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--light-color);
}

.bg-light {
  background-color: rgba(255, 255, 255, 0.04) !important;
  color: var(--text-dark) !important;
}

.bg-white {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-dark) !important;
}

.text-bg-light {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: var(--text-dark) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  padding: 1rem 0;
}

.navbar-brand .brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0.75rem;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  backdrop-filter: blur(10px);
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: rgba(139, 111, 71, 0.3);
  color: var(--accent-color);
  padding-left: 2rem;
}

.dropdown-item:focus {
  background-color: rgba(139, 111, 71, 0.25);
  color: var(--accent-color);
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #1a1410;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100vh;
}

.hero-carousel .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.hero-carousel .carousel-item.active,
.hero-carousel .carousel-item-next,
.hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.hero-carousel.carousel-fade .carousel-item.active,
.hero-carousel.carousel-fade .carousel-item-next.carousel-item-start,
.hero-carousel.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

.hero-carousel.carousel-fade .active.carousel-item-start,
.hero-carousel.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

.hero-carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  filter: brightness(0.85) contrast(1.05);
}

.hero-carousel .carousel-caption {
  position: static;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 2;
}

.hero-carousel .carousel-indicators {
  bottom: 30px;
  z-index: 3;
}

.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  width: 30px;
  border-radius: 5px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(139, 111, 71, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
  opacity: 1;
}

.hero-carousel .carousel-control-prev {
  left: 40px;
}

.hero-carousel .carousel-control-next {
  right: 40px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(139, 111, 71, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 76px;
}

.page-header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  filter: brightness(0.7);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-header-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.8rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(168, 75, 63, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
  border-width: 2px;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 111, 71, 0.3);
}

.btn-light {
  background-color: #111;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-dark);
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-light:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== SAFARI CARDS ===== */
/* Background image cards for featured safaris */
.safari-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.safari-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.25);
}

.safari-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85) contrast(1.05);
}

.safari-card:hover .safari-card-img {
  transform: scale(1.1);
  filter: brightness(0.75) contrast(1.1);
}

/* Sophisticated gradient overlay using brand colors */
.safari-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.safari-card:hover::before {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.95) 100%);
}

.safari-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: white;
}

.safari-card-body h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.safari-card-body .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.9);
  color: white;
  background: rgba(139, 111, 71, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-width: 2px;
}

.safari-card-body .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(184, 153, 104, 0.4);
}

/* Safari card accessories for detail pages */
.safari-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

/* ===== WILDLIFE PREVIEW ===== */
/* Creative tilted gallery with staggered animations */
.wildlife-preview {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 8px;
  overflow: visible;
}

/* Alternate tilting pattern */
.wildlife-preview:nth-child(1) {
  transform: rotate(-3deg);
}

.wildlife-preview:nth-child(2) {
  transform: rotate(2deg);
}

.wildlife-preview:nth-child(3) {
  transform: rotate(-2deg);
}

.wildlife-preview:nth-child(4) {
  transform: rotate(3deg);
}

.wildlife-preview:nth-child(5) {
  transform: rotate(2deg);
}

.wildlife-preview:nth-child(6) {
  transform: rotate(-2deg);
}

.wildlife-preview:nth-child(7) {
  transform: rotate(3deg);
}

.wildlife-preview:nth-child(8) {
  transform: rotate(-3deg);
}

/* Hover effect - straighten and lift */
.wildlife-preview:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.wildlife-preview img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wildlife-preview:hover img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Add subtle border effect */
.wildlife-preview::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.wildlife-preview:hover::before {
  opacity: 0.6;
}

/* Staggered animation on page load */
@keyframes fadeInTilt {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(0deg);
  }

  to {
    opacity: 1;
  }
}

.wildlife-preview {
  animation: fadeInTilt 0.6s ease forwards;
}

.wildlife-preview:nth-child(1) {
  animation-delay: 0.1s;
}

.wildlife-preview:nth-child(2) {
  animation-delay: 0.2s;
}

.wildlife-preview:nth-child(3) {
  animation-delay: 0.3s;
}

.wildlife-preview:nth-child(4) {
  animation-delay: 0.4s;
}

.wildlife-preview:nth-child(5) {
  animation-delay: 0.5s;
}

.wildlife-preview:nth-child(6) {
  animation-delay: 0.6s;
}

.wildlife-preview:nth-child(7) {
  animation-delay: 0.7s;
}

.wildlife-preview:nth-child(8) {
  animation-delay: 0.8s;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-box:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.feature-box h4 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.feature-box h5 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.feature-box p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #111;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.testimonial-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.stars {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(44, 36, 22, 0.3) 0%, rgba(44, 36, 22, 0.6) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ===== SAFARI DETAIL CARDS ===== */
.safari-detail-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.safari-detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.safari-detail-body {
  padding: 3rem;
}

.safari-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-red);
  font-family: "Playfair Display", serif;
}

.safari-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.95rem;
}

.safari-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safari-highlights ul {
  list-style: none;
  padding-left: 0;
}

.safari-highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.safari-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== INCLUDED ITEMS ===== */
.included-item {
  padding: 1.5rem;
}

.included-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== DESTINATIONS ===== */
.destination-section {
  padding: 3rem 0;
}

.destination-title {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.destination-features ul {
  list-style: none;
  padding-left: 0;
}

.destination-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.destination-features .bi-check-circle-fill {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* ===== SEASON CARDS ===== */
.season-card {
  background: #111;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.season-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.season-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-bio {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== VALUE CARDS ===== */
.value-card {
  text-align: left;
  padding: 1.5rem;
}

.value-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

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

.vision-mission-card {
  background: #111;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.mission-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.core-value-card {
  background: #111;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(193, 122, 58, 0.3);
}

.value-icon-wrapper i {
  font-size: 2.5rem;
  color: #fff;
}

.core-value-card h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.core-value-card p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

.value-image {
  overflow: hidden;
  border-radius: 8px;
}

.value-image img {
  transition: transform 0.3s ease;
}

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

/* ===== CONSERVATION ITEMS ===== */
.conservation-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.conservation-item .bi-check-circle-fill {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== AWARD CARDS ===== */
.award-card {
  padding: 2rem;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.award-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.7rem 2rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.gallery-grid {
  margin-top: 2rem;
}

.gallery-item {
  transition: opacity 0.3s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  color: #fff;
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay h5 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.gallery-overlay p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ===== CONTACT FORM ===== */
.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dark);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(139, 111, 71, 0.25);
}

.contact-info-card {
  background: #111;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-info-item p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

.office-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.social-connect {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.social-connect h5 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.social-connect .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #fff;
}

.map-section {
  height: 400px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-item {
  background: #111;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.faq-item h5 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h5 i {
  color: var(--accent-color);
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #090909;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.footer p {
  line-height: 1.8;
  font-size: 0.95rem;
}

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

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

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

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-header {
    height: 40vh;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

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

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  /* Safari cards mobile adjustments */
  .safari-card {
    height: 350px;
  }

  .safari-card-body {
    padding: 1.5rem;
  }

  .safari-card-body h3 {
    font-size: 1.3rem;
  }

  /* Wildlife preview mobile adjustments */
  .wildlife-preview img {
    height: 200px;
  }

  /* Reduce tilt angles on mobile for better UX */
  .wildlife-preview:nth-child(odd) {
    transform: rotate(-1.5deg);
  }

  .wildlife-preview:nth-child(even) {
    transform: rotate(1.5deg);
  }

  .wildlife-preview:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.03);
  }
}