:root {
  --primary-gold: #b7904f;
  --dark-brown: #4f3518;
  --accent-gold: #dbc089;
  --black: #101010;
  --cream: #f7f1e6;
  --light-gray: #e6ded1;
  --text-dark: #2f2618;
  --white: #ffffff;
  --secondary-gold: #9f7a4a;
  --text-light: #675946;
  --border-color: #d3c5af;
  --primary-color: #7a552e;
  --secondary-color: #b7904f;
  --accent-color: #d8ac63;
  --cream-color: #f7f1e6;
  --dark-color: #2f2213;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-brown);
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: transparent;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
}

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

.navbar.scrolled .navbar-brand .brand-text {
  color: var(--text-dark);
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-dark);
}

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

.navbar-brand .brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
}

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

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--cream-color);
  color: var(--primary-color);
  padding-left: 1.75rem;
}

.dropdown-item:focus {
  background-color: var(--cream-color);
  color: var(--primary-color);
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--dark-color);
}

.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.75);
}

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

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

.hero-carousel .carousel-indicators button {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
  background-color: var(--accent-color);
  width: 60px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

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

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

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

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
  background-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

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

.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.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

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

.hero-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  opacity: 0.95;
  font-family: "Inter", sans-serif;
}

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

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

.page-header-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.5) 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 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-header-content p {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
  font-family: "Inter", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.85rem 2.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 6px;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  color: #fff;
}

.btn-primary:hover {
  background-color: #c96842;
  border-color: #c96842;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 123, 84, 0.35);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
  border-width: 2px;
  border-radius: 6px;
  padding: 0.75rem 2rem;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  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 20px rgba(26, 95, 90, 0.25);
}

.btn-light {
  background-color: #fff;
  border-color: var(--border-color);
  color: var(--text-dark);
  padding: 0.85rem 2.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 6px;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.btn-light:hover {
  background-color: var(--cream-color);
  border-color: var(--border-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ===== SAFARI CARDS ===== */
.safari-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.safari-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.safari-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}

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

.safari-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.safari-card:hover::before {
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.9) 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.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.safari-card-body .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.safari-card-body .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  transform: none;
  box-shadow: none;
}

.safari-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: "Cormorant Garamond", 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 2rem;
  transition: all 0.3s ease;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-color);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.feature-icon {
  font-size: 2.75rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

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

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

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

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

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

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

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

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  height: 55vh;
  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(26, 95, 90, 0.6) 0%, rgba(26, 95, 90, 0.8) 100%);
}

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

.cta-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

/* ===== SAFARI DETAIL CARDS ===== */
.safari-detail-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-color);
}

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

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

.safari-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: "Cormorant Garamond", serif;
}

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

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

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

.safari-highlights li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

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

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

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

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

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

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

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

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

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

.destination-highlights li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

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

/* ===== SEASON CARDS ===== */
.season-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

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

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

/* ===== TEAM CARDS ===== */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 280px;
  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;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

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

.vision-mission-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.mission-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text-light);
}

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

.core-value-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.core-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.value-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 95, 90, 0.25);
}

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

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

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

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

.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.4rem;
  flex-shrink: 0;
}

/* ===== AWARD CARDS ===== */
.award-card {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

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

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

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 95, 90, 0.25);
}

.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: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

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

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

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

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

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(28, 37, 38, 0.15);
  background: #fff;
  color: var(--text-dark);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 95, 90, 0.15);
}

.contact-info-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-color);
}

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

.contact-info-item i {
  font-size: 1.75rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

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

.contact-info-item p a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-item p a:hover {
  text-decoration: underline;
}

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

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

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

.social-connect .social-links {
  display: flex;
  gap: 0.75rem;
  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.15rem;
  text-decoration: none;
}

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

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

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

.faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

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

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

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

/* ===== PARTNER LOGOS ===== */
.partner-logo-static {
  transition: all 0.3s ease;
}

.partner-logo-static:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.partner-logo-static img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo-static:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

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

.footer h5 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

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

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

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

.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: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
  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;
  }

  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
  }
}

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

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

  .page-header {
    height: 45vh;
  }

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

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

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

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

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

  .safari-card {
    height: 350px;
  }

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

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

  .wildlife-preview img {
    height: 200px;
  }

  .wildlife-preview:hover {
    transform: translateY(-6px);
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
  }

  .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: var(--primary-color) !important;
  }
}

/* ===== 2026 BRAND OVERHAUL ===== */
body {
  background: linear-gradient(180deg, #f9f4ea 0%, #f4ecde 100%);
}

.navbar {
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(247, 241, 230, 0.96);
  border-bottom: 1px solid rgba(122, 85, 46, 0.14);
}

.navbar-brand img {
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.navbar.scrolled .navbar-brand img {
  border-color: rgba(122, 85, 46, 0.28);
  box-shadow: 0 6px 18px rgba(79, 53, 24, 0.16);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(16, 16, 16, 0.35) 0%, rgba(47, 34, 19, 0.72) 100%);
}

.hero-subtitle,
.page-header-content p {
  color: rgba(255, 255, 255, 0.92);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: 0;
  box-shadow: 0 8px 22px rgba(122, 85, 46, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #634121, #946d3e);
  box-shadow: 0 12px 30px rgba(79, 53, 24, 0.32);
}

.btn-outline-primary {
  color: var(--dark-brown);
  border-color: rgba(122, 85, 46, 0.7);
}

.btn-outline-primary:hover {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
}

.feature-box,
.testimonial-card,
.season-card,
.team-card,
.value-card,
.vision-mission-card,
.core-value-card,
.award-card,
.faq-item,
.contact-info-card,
.safari-detail-card {
  border: 1px solid rgba(122, 85, 46, 0.16);
  box-shadow: 0 14px 32px rgba(79, 53, 24, 0.08);
  border-radius: 18px;
}

.feature-box:hover,
.testimonial-card:hover,
.team-card:hover,
.value-card:hover,
.vision-mission-card:hover,
.core-value-card:hover {
  box-shadow: 0 18px 38px rgba(79, 53, 24, 0.15);
}

.value-icon-wrapper,
.social-connect {
  background: linear-gradient(135deg, var(--primary-color), #b1874a);
}

.price,
.safari-price,
.stars {
  color: var(--primary-color);
}

.safari-badge {
  background: linear-gradient(135deg, #6f4b28, #9f7a4a);
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(47, 34, 19, 0.94) 0%, rgba(79, 53, 24, 0.72) 45%, transparent 100%);
}

.filter-btn {
  border-color: rgba(122, 85, 46, 0.7);
  color: var(--dark-brown);
  background: rgba(255, 255, 255, 0.72);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(122, 85, 46, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(122, 85, 46, 0.18);
}

.footer {
  background: linear-gradient(180deg, #2f2213 0%, #1c130b 100%);
  border-top: 2px solid rgba(216, 172, 99, 0.45);
}

.footer-links a:hover,
.footer-contact i,
.social-links a:hover {
  color: var(--accent-gold);
}

/* ===== STRUCTURAL UI OVERHAUL ===== */
.top-brand-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1045;
  background: linear-gradient(90deg, #2f2213 0%, #5f4120 100%);
  color: rgba(255, 246, 230, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(216, 172, 99, 0.35);
}

.navbar {
  top: 34px;
}

.navbar .container {
  background: rgba(20, 14, 9, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

.navbar.scrolled .container {
  background: rgba(247, 241, 230, 0.96);
  border-color: rgba(122, 85, 46, 0.2);
}

.brand-text {
  text-transform: uppercase;
  letter-spacing: 0.08em !important;
  font-size: 0.95rem !important;
}

.nav-cta-btn {
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d8ac63, #b7904f);
  border: 0;
  color: #2f2213;
}

.nav-cta-btn:hover {
  color: #1f1409;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79, 53, 24, 0.28);
}

.site-main {
  padding-top: 34px;
}

.site-main > section:not(.hero-carousel):not(.page-header):not(.cta-section) {
  position: relative;
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.site-main > section:nth-child(odd):not(.hero-carousel):not(.page-header):not(.cta-section) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 241, 230, 0.85) 100%);
}

.site-main > section:nth-child(even):not(.hero-carousel):not(.page-header):not(.cta-section) {
  background: linear-gradient(180deg, rgba(244, 236, 222, 0.95) 0%, rgba(236, 223, 200, 0.75) 100%);
}

.site-main > section:not(.hero-carousel):not(.page-header):not(.cta-section)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  border-top: 1px solid rgba(122, 85, 46, 0.12);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker {
  display: inline-block;
  background: rgba(216, 172, 99, 0.2);
  border: 1px solid rgba(216, 172, 99, 0.5);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.experience-strip {
  background: linear-gradient(135deg, #24170d 0%, #4f3518 45%, #8b6334 100%) !important;
  color: #fffaf1;
  padding: 1.4rem 0 !important;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 35px rgba(47, 34, 19, 0.18);
}

.experience-strip::before {
  border-top: 0 !important;
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 40%);
  pointer-events: none;
}

.experience-stat {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 1.05rem 1rem;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(6px);
  height: 100%;
}

.experience-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  color: #fffdf8;
  font-weight: 700;
}

.experience-stat span {
  font-size: 0.9rem;
  color: #f8e8ca;
  opacity: 1;
  line-height: 1.6;
}

.page-intro-band {
  padding: 2rem 0 !important;
  background: linear-gradient(90deg, rgba(47, 34, 19, 0.95) 0%, rgba(122, 85, 46, 0.92) 100%) !important;
}

.page-intro-band::before {
  border-top: 0 !important;
}

.page-intro-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  color: #fff8eb;
  max-width: 900px;
  margin: 0 auto;
}

.page-intro-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  color: #f5d9a5;
}

.page-intro-card h2 {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 0.6rem;
}

.page-intro-card p {
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.9);
}

.story-gallery img {
  border: 1px solid rgba(122, 85, 46, 0.18);
  box-shadow: 0 14px 34px rgba(79, 53, 24, 0.16);
}

.safari-package-card {
  overflow: hidden;
}

.safari-package-card .safari-detail-body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 241, 230, 0.88) 100%);
}

.safari-package-card .safari-meta {
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(122, 85, 46, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.destination-showcase {
  border: 1px solid rgba(122, 85, 46, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.4rem;
  box-shadow: 0 14px 36px rgba(79, 53, 24, 0.1);
}

.destination-showcase .section-title {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.destination-showcase img {
  border: 1px solid rgba(122, 85, 46, 0.15);
}

.accomodation-showcase .btn {
  border-radius: 999px;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.community-project-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.community-project-card .cta-content {
  max-width: 760px;
}

.contact-form-panel,
.contact-info-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(122, 85, 46, 0.16);
  border-radius: 18px;
  padding: 1.3rem;
}

/* Remove Bootstrap cool blue/gray tint from bg-light */
.bg-light {
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.96) 0%, rgba(239, 228, 208, 0.9) 100%) !important;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.section-subtitle,
.lead {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.feature-box,
.testimonial-card,
.safari-detail-card,
.vision-mission-card,
.value-card,
.core-value-card,
.faq-item,
.contact-info-card,
.season-card,
.team-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
}

.safari-card,
.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.safari-card:hover,
.gallery-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.footer {
  margin-top: 0;
  padding-top: 5rem;
}

@media (max-width: 991px) {
  .navbar {
    top: 30px;
  }

  .navbar .container {
    border-radius: 20px;
  }

  .site-main > section:not(.hero-carousel):not(.page-header):not(.cta-section) {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 767px) {
  .top-brand-bar {
    font-size: 0.72rem;
    padding: 0.35rem 0;
  }

  .site-main {
    padding-top: 30px;
  }
}
