/* Header base */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* Mobile logo */
.mobile-logo-container {
  display: none;
}
.mobile-logo {
  height: 35px;
}

}
/* Burger */
.burger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  color: white;
  font-weight: bolder;
  background: transparent;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav-bg {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
}
.mobile-nav-bg.active { display: block; }

/* Mobile sidebar */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 20px;
  background: #fdf6ec;
  position: fixed;
  top: 0; right: 0;
  width: 75%;
  height: 100vh;
  z-index: 1100;
  box-shadow: -3px 0 8px rgba(0,0,0,0.2);
}
.mobile-nav.active { display: flex; }
.sidebar-logo {
  height: 40px;
  margin-bottom: 40px;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  text-decoration: none;
  color: #111;
  font-size: 1.1em;
  font-weight: 500;
}
.sidebar-btn {
  background: #c0a040;
  color: #fff;
  padding: 12px 18px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 20px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.nav-links.active {
  display: flex;
}
/* Desktop */
@media (max-width: 1600px) {
  .main-nav, .right-nav { display: flex; }
  .burger, .mobile-nav, .mobile-nav-bg, .mobile-logo-container { display: none !important; }
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav, .right-nav, .logo-container { display: none !important; }
  .mobile-logo-container, .burger { display: flex; }
  .hero h1, .hero p { font-size: 1rem; text-align: center; }
}


/*HOME PAGE CSS*/
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Open+Sans:wght@400;600&display=swap');
/* Base styles for floating alerts */
.success,
.error {
    position: absolute;
    top: 15px;                     /* distance from top of form */
    left: 50%;
    transform: translateX(-50%);   /* center horizontally */
    padding: 20px 30px;
    border-radius: 6px;
    font-weight: light;
    font-size: 18px;
    font-family: 'calibri' serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    animation: fadeInOut 7s forwards;
    max-width: 1600px;
    text-align: center;
}

/* Success (green) */
.success {
    background-color: #d4edda;
    color: #155724;
}

/* Error (red) */
.error {
    background-color: #af0303;
    color: white;
}

/* Fade in/out animation */
@keyframes fadeInOut {
    0%   { opacity: 0; transform: translate(-50%, -20px); }
    10%  { opacity: 1; transform: translate(-50%, 0); }
    90%  { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}

.subscribe-toast {
    position: absolute;
    top: 70vh;   /* adjust depending on your form height */
    left: 10%;
    transform: translateX(-50%);
    background-color: #058134;
    color: white;
    font-family: 'verdana', serif;
    font-weight: bold;
    padding: 24px 32px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    animation: fadeInOut 7s forwards;
}


.subscribe-error {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: red;
    color: white;
    font-family: 'Marcellus' serif;
    font-weight: bold;
    padding: 14px 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    animation: fadeInOut 4s forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.faq-main {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  background:  #faf6ed;
  box-sizing: border-box;
}

/* Left image column */
.faq-image-col {
  flex: 1.04;
  max-width: 450px;
  min-width: 340px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  margin-top: 0;
}
.faq-image-col img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center top;
  border: none;
  background: #eee;
}

/* Right FAQ column */
.faq-content-col {
  flex: 1.4;
  min-width: 350px;
  max-width: 900px;
  padding: 62px 34px 0 34px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.faq-accordion {
  width: 100%;
  background: transparent;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1.7px solid var(--faq-border);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 0 17px 0;
  font-family: 'Marcellus', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--faq-accent);
}

.faq-arrow {
  margin-left: 16px;
  border: solid var(--faq-arrow);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.18s;
}

.faq-question[aria-expanded="true"] .faq-arrow,
.faq-arrow.faq-open {
  transform: rotate(-135deg);
}

.faq-answer {
  display: none;
  padding: 0 0 0 0;
  background: var(--answer-bg);
  font-size: 1.10rem;
  color: #2e2921;
  transition: max-height 0.24s, opacity 0.24s;
}

.faq-answer-box {
  border: 1px solid #cfcfcf;
  background: #fff;
  border-radius: 4px;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 10px 15px;
  color: #2e2921;
  font-size: 1.09rem;
}

.faq-answer-open {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-main {
    flex-direction: column;
    align-items: stretch;
    background-color: #faf6ed ;
  }
  .faq-image-col {
    max-width: 100vw;
    min-width: 0;
    height: 260px;
  }
  .faq-image-col img {
    height: 260px;
    object-fit: cover;
  }
  .faq-content-col {
    max-width: 99vw;
    min-width: 0;
    padding: 34px 14px 0 14px;
  }
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 1.08rem;
    padding: 17px 0 13px 0;
  }
  .faq-answer-box {
    font-size: 1rem;
    padding: 12px 8px;
  }
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: auto;
}

.logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181818;
  color: #fff;
}

.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  padding: 3px;
  align-items: center;
   align-self: center;
  margin: 2px;
  padding-top: 0px;
}

.main-header .logo {
  max-height: 79px;
  display: flex;
  line-height: 1;
  margin: 5px 15px;
}

.main-header a {
  color: #c0a040;
  font-size: 1.2rem;
  transition: color 0.3s ease;
   padding: 10px 0.5rem;
  gap: 15px;
}

.main-header.scrolled {
  background: #c0a040;
  padding: 3px;
  height: 60px;
  display: inline-block;
  align-items: center;
  align-self: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  position: fixed;      /* Sticks it to the viewport */
  top: 0;               /* Attach to very top */
  left: 0;
  width: 100%;          /* Stretch full width */
  z-index: 999;        /* Keep above all content */
}

.main-header.scrolled .logo {
  max-height: 59px;
  margin: 5px 15px;
}

.main-header.scrolled a {
  color: #fff;
  font-size: 1rem;
  padding: 10px 0.5rem;
  line-height: 1;
  gap: 15px;
}
.main-header.scrolled a:hover {
  color: #111111;
  font-size: 1rem;
  padding: 10px 0.5rem;
  line-height: 1;
  gap: 15px;
}


/* sticky header */
.main-header4 {
  background: #c0a040;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
  padding: 5px; /* remove all vertical space */
  height: 70px; /* force fixed height if needed */
  display: flex;
  align-items: center; /* vertically center logo/nav */
}
.main-header4.nav-links {
  display: flex;
  gap: 17px; /* clean and modern spacing */
}
.main-header4 .logo {
  max-height: 60px; /* smaller logo */
  margin: 3px;
  padding: 3px;
  align-self: center;
  margin-left: 10px;
  margin-right: 10px ;
  display: block;
  line-height: 4px; /* remove inline spacing */
}

.main-header4 a {
  color: #fff;
  font-size: 0.8rem;
  padding: 10 0.5rem;
  line-height: 1; /* clean tight link spacing */
  gap: 15px;
}


.container.header-flex {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.main-nav ul, .right-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 38px;
}
.main-nav40 ul, .right-nav40 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 38px;
}
.main-nav40 ul li a, .right-nav40 ul li a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04em;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.main-nav40 ul li a, .right-nav40 ul li a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04em;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.main-nav ul li a, .right-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04em;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.right-nav ul li .start-btn {
  background:  #c0a040;
  color: #fff;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: bold;
  margin-left: 12px;
  transition: background 0.2s;
}

.right-nav ul li .start-btn:hover {
  background:  #c0a040;
}

.logo1 {
  text-align: center;
  flex: 1;
}

.logo-main {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2em;
  letter-spacing: 0.03em;
  display: block;
}
.logo-sub {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.83em;
  letter-spacing: 0.05em;
  color:  #c0a040;
  display: block;
}
.safari-para{
  position: relative;
  z-index: 0;
  max-width: 1600px;
  margin: 18px auto;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 3900px;
  overflow: hidden;
}
.hero-safari {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 3900px;
}

.hero-bg {
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  /*  background: rgba(0, 0, 0, 0.4); overlay effect */
 background: linear-gradient(
  to bottom,
  rgba(0, 50, 105, 0.3), 
 rgba(0, 37, 78, 0.4)   
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  color: white;
  transform: translateY(-50%);
   padding: 0 1rem;
  top: 50%;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2em;
  color:  #fff;
  margin-bottom: 0px;
  font-weight: 700;
  letter-spacing: 0.05em;
   padding-top: 20px;
}

/* Background Video */
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures proper scaling */
  z-index: -1;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

  .split-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 80vh; /* Shorter on very small screens */
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

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

  .hero-desc {
    font-size: 0.9rem;
  }

  .split-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
.safari-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2em;
  color: #fff;
  padding: 20px;
  margin-bottom: 0px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.safari-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3em;
  font-weight: 700;
  margin: 0px;
  color: #fff;
}
.hero-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 38px;
  color: #fff;
  margin-bottom: 5px;
}

.hero-desc {
  font-size: 1.46em;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
  font-family: verdana;
    letter-spacing: 0.05em;

}

.hero-cta {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 2px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background:  #c0a040;
  color: #181818;
  border-color: #c0a040;
}

.main-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #c0a040;
  color: #fff;
  z-index: 20;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px;
}

.footer-lang {
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-chat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-bubble {
  background:  #c0a040;
  color: #232323;
  font-weight: bold;
  border-radius: 22px;
  padding: 3px 16px 3px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.07);
}

@media (max-width: 1400px) {
  .container.header-flex { flex-direction: column; gap: 26px; }
  .main-nav ul, .right-nav ul { gap: 8px; }
  .logo-main { font-size: 1.4em; }
  .hero-title { font-size: 2em; }
  .hero-content { max-width: 95vw; }
}



/*WHY CHOOSE US CSS*/

.why-choose-us {
  background: #181716;
  color: #fff;
  padding: 42px 0 29px 0;
  text-align: center;
  padding-bottom: 30px 0 32px 0;
}
.why-choose-us h2 {
  font-size: 1.8em;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 500;
  position: relative;
}
.why-choose-us h2::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 60px;
  height: 2px;
  background: #fff;
  opacity: 0.4;
}
.why-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.why-item {
  width: 300px;
  padding: 12px;
}
.why-icon {
  font-size: 3em;
  color:  #c0a040;
  margin-bottom: 20px;
  display: block;
}
.why-item h3 {
  color:   #c0a040;
  font-size: 1.08em;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.why-item p {
  color: #fff;
  font-size: 1.1em;
  opacity: 0.95;
  font-family: calibri;
}

.split-section {
  display: flex;
  width: 100%;
  min-height: 350px;
  background:  #c0a040;
}
.split-image {
  flex: 1.2;
  min-width: 350px;
  max-width: 50vw;
  background: #ececec;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}
.split-content {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 48px 48px 32px;
  color: black;
}
.split-content.gold-bg {
  background:  #c0a040;
}
.split-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.38em;
  color: black;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.split-title {
  font-size: 2.05em;
  font-weight: 700;
  margin-bottom: 24px;
  color: black;
  line-height: 1.14em;
}
.split-actions {
  display: flex;
  gap: 14px;
}
.split-btn {
  background: black;
  color:  #c0a040;
  border: none;
  padding: 12px 30px;
  border-radius: 2px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.06em;
   border: 2px solid black;
}
.split-btn:hover  {
  background:  #c0a040;
  color: #181818;
 border: 2px solid black;
}

.stickybutton {
  display: block;
  border: none;
  padding: 10px 25px;
  margin: 2px  11px;
  text-decoration: none;
  font-size: 1.0em;
  background: transparent;
  color: white;
  border: 1px solid white;
  position: relative;
}
  
  .stickybutton:hover {
  background: transparent;
  color: black;
  border: 1px solid black;

}

.split-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;

}

.split-btn.outline:hover {
  background:  #c0a040;
  color: #181818;
  border-color: black;
}

.explore-safaris {
  background: #f8f2e1;
  color: #181818;
  padding: 44px 0 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.explore-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}
.explore-watermark {
  width: 260px;
  opacity: 0.2;
  display: block;
  margin: 0 auto;
}
.explore-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  font-family: verdana;
}
.explore-content h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 18px;
  color:  #c0a040;
}
.highlighted {
  color:  #c0a040;
  font-weight: 700;
}
.highlighted-red {
  color:  #c0a040;
  font-weight: 700;
}
.explore-content p {
  font-size: 1.14em;
  margin-bottom: 26px;
  color:  #c0a040;
  font-family: verdana;
}
.explore-btn {
  background:  #c0a040;
  color: black;
  border: none;
  padding: 13px 36px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.explore-btn:hover {
  background: #c0a040;
  color: #181818;
}

@media(max-width: 1100px) {
  .why-items { gap: 28px; }
  .split-section { flex-direction: column; }
  .split-image { max-width: 100vw; }
  .split-content { padding: 30px 16px; }
}


/*EXPLORE_SAFARIS CSS*/

.explore-safaris.legendary-bg {
  position: relative;
  background: #f8f2e1;
  background-size: 160px;
  min-height: 900px;
  transition: background-image 1s cubic-bezier(.4,0,.2,1);
  z-index: 1;
  overflow: hidden;
}

.explore-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

.explore-header {
  text-align: center;
  margin-bottom: 40px;
}

.explore-header h2 {
  font-size: 2.8em;
  font-weight: 700;
  color: #181818;
  margin-bottom: 10px;
}
.highlighted {
  color:  #c0a040;
  font-weight: 700;
}
.highlighted-red {
  color:  #c0a040;
  font-weight: 700;
}
.explore-header p {
  font-size: 1.18em;
  color: #181818;
  margin-bottom: 28px;
}
.explore-btn {
  background:  #c0a040;
  color: black;
  border: none;
  padding: 13px 36px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(206,165,38,0.10);
}
.explore-btn:hover {
  background:  #c0a040;
  color: #181818;
}

.safari-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.safari-card {
  background: #181818;
  width: 310px;
  border-radius: 7px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.09);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.card-tag {
  padding: 6px 14px;
  font-size: 0.93em;
  font-weight: bold;
  color: #fff;
  border-radius: 0 0 12px 0;
  position: absolute;
  left: 0; top: 0;
  z-index: 2;
  background:  #c0a040;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(206,165,38,0.15);
}
.card-tag.photographic { background:  #c0a040; }
.card-tag.game { background: #c0a040; }
.card-tag.safari { background:  #c0a040; }
.card-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-content {
  padding: 22px 22px 16px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.card-content h3 {
  font-size: 1.19em;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: verdana;
  color: #fff;
}
.card-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.card-label {
  font-size: 0.87em;
  color:  #c0a040;
  font-family: verdana;
  font-weight: light;
  margin-right: 8px;
}
.card-explore {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
  font-weight: 300;
  font-size: 0.78em;
  text-decoration: none;
  padding: 7px 18px;
  transition: background 0.2s, color 0.2s;
}
.card-explore:hover {
  background:  #c0a040;
  color: #181818;
  border-color: #fff;
}
#heroVideo {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.happy-travellers {
  padding: 38px 0 0 0;
  text-align: center;
}
.happy-travellers h2 {
  font-size: 2.8em;
  font-weight: 700;
  color: #181818;
  margin-bottom: 18px;
}
.reviews-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.review-score {
  text-align: left;
  padding-right: 28px;
  border-right: 2px solid #ececec;
  min-width: 170px;
}
.review-logo {
  height: 42px;
  margin-bottom: 6px;
}
.review-rating {
  font-size: 1.14em;
  font-weight: bold;
  color:  black;
  margin-bottom: 4px;
}
.review-stars {
  height: 28px;
  margin-bottom: 4px;
}
.review-count {
  font-size: 0.98em;
  color: #181818;
  margin-bottom: 4px;
  font-family: verdana;
}
.review-box {
  background: #e7e7e7;
  border-radius: 7px;
  box-shadow: 0 2px 15px rgba(206,165,38,0.09);
  padding: 18px 16px 18px 16px;
  min-width: 240px;
  max-width: 290px;
  color: #181818;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-avatar {
  font-size: 2.2em;
  color:  black;
  margin-bottom: 8px;
}
.review-name {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 2px;
  font-family: verdana;
}
.review-date {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 8px;
    font-family: verdana;
}
.review-text {
  font-size: 1em;
  margin-bottom: 8px;
    font-family: verdana;
}
.review-readmore {
  color:  #c0a040;
  font-weight: bold;
  font-size: 0.96em;
  text-decoration: none;
    font-family: verdana;
}
.review-readmore:hover {
  text-decoration: underline;
}
.review-verification {
  margin-top: 18px;
  font-size: 1.07em;
  color: #181818;
  display: flex;
  align-items: center;
  gap: 7px;
}

@media(max-width:1100px) {
  .safari-cards { gap: 12px; flex-wrap: wrap; }
  .reviews-row { gap: 12px; flex-wrap: wrap; }
  .review-score { padding-right: 12px; }
}
@media(max-width:700px) {
  .explore-content { padding: 0; }
  .safari-cards { flex-direction: column; align-items: center; }
  .reviews-row { flex-direction: column; align-items: center; }
}


/*GET_IN_TOUCH CSS*/

.get-in-touch-message {
  position: relative;
  min-height:105vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: #181818;
  overflow: hidden;
}

.get-in-touch-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/giraffe.jpg');
  z-index: 1;
}

.get-in-touch-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(24,24,24,0.05) 0%, rgba(24,24,24,0.85) 110%);
  z-index: 2;
}

.get-in-touch-content {
  position: relative;
  z-index: 3;
  margin: 0 0 60px 8vw;
  max-width: 600px;
}

.get-in-touch-question {
  font-family: 'Dancing Script', cursive;
  font-size: 2em;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.get-in-touch-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
  line-height: 1.13em;
}

@media(max-width:900px) {
  .get-in-touch-content {
    margin: 0 0 38px 4vw;
    max-width: 95vw;
  }
  .get-in-touch-title { font-size: 1.2em; }
  .get-in-touch-question { font-size: 1.1em; }
}


/*FOOTER CSS*/

.legendary-footer {
  background: #181716;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer-top {
  text-align: center;
  padding: 32px 0 16px 0;
  border-bottom: 1px solid #444;
}
.footer-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 19px;
}
.footer-logo {
  height: 75px;
  margin-bottom: 6px;
}
.footer-brand .brand-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: block;
}
.footer-brand .brand-sub {
  font-size: 0.93em;
  color: #c0a040;
  letter-spacing: 0.04em;
}
.footer-contact-row {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 220px;
  margin-bottom: 12px;
}
.contact-icon {
  background: #c0a040;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6em;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-weight: bold;
  font-size: 1.01em;
  margin-bottom: 2px;
  font-family: verdana;
}
.contact-value {
  font-size: 1.06em;
  font-family: verdana;
}

.sision-icons a {
  color: black;
  gap: 32px;
  font-size: 1.32em;
  margin-right: 9px;
  transition: color 0.2s;
}
.sision-icons a:hover {
transition: 0.6s;
}
.footer-social-icons2 a {
  color: #c0a040;
    gap: 32px;
  font-size: 1.62em;
  margin-right: 9px;
  transition: color 0.2s;
}
.footer-social-icons2 a:hover {
  color: #1a1919;
}
.footer-social-icons a {
  color: #fff;
    gap: 32px;
  font-size: 1.62em;
  margin-right: 9px;
  transition: color 0.2s;
}
.footer-social-icons a:hover {
  color: #c0a040;
}
.footer-links-row {
  display: flex;
  max-width: 1550px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0 24px 0;
  border-bottom: 1px solid #444;
}
.footer-links {
  flex: 1;
  min-width: 280px;
  font-family: verdana;
}
.footer-links h4 {
  color: #c0a040;
  font-family: verdana;
  font-size: 1.45em;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.03em;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #c0a040;
}
.footer-links ul li i {
  color: #c0a040;
  margin-right: 7px;
  font-size: 0.93em;
}
.footer-subscribe p {
  color: #fff;
  font-size: 1em;
  margin-bottom: 12px;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.subscribe-form input[type="text"],
.subscribe-form input[type="email"]
{
  background: #fff;
  color: #181818;
  border: none;
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 1em;
  margin-bottom: 0;
  outline: none;
  font-family: verdana;
}
.subscribe-accept {
  display: flex;
  align-items: flex-start;
  font-size: 0.97em;
  gap: 7px;
  color: #fff;
}
.subscribe-form input[type="checkbox"] {
  accent-color: #c0a040;
  margin-top: 3px;
}
.subscribe-btn {
  background: #c0a040;
  color: black;
  border: none;
  padding: 10px 32px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 1.07em;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-btn:hover {
  background: #c0a040;
  color: #fff;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  font-family: verdana;
  padding: 18px 0 10px 0;
  font-size: 1.01em;
  color: #fff;
}
.footer-policy-links a {
  color: #c0a040;
  text-decoration: none;
  margin: 0 4px;
  font-size: 1.02em;
}
.footer-policy-links a:hover {
  text-decoration: underline;
}


@media(max-width:1200px) {
  .footer-top, .footer-links-row, .footer-bottom-row {
    max-width: 95vw;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact-row, .footer-links-row {
    flex-wrap: wrap;
  }
}
@media(max-width:900px) {
  .footer-contact-row, .footer-links-row {
    flex-direction: column;
    gap: 18px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/*WHO WE ARE  CSS */
.who-we-are {
  background: #f9f7f2;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}
.who-we-are-inner {
  display: flex;
  max-width: 1600px;
  gap: 70px;
  align-items: center;
  width: 100%;
}
.who-image img {
  width: 700px;
  height: 600px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
}
.who-content {
  flex: 1;
  color: black;
}
.who-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5em;
  color: black;
  margin-top: 0px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.who-title {
  font-size: 2em;
  font-weight: 400;
   color: black;
  margin-bottom: 22px;
}
.who-content p {
  font-size: 1.20em;
  margin-bottom: 18px;
  line-height: 1.7;
  font-family: verdana;
 color: black;
}
.who-highlight {
   color:  #c0a040;
  font-weight: 900;
}
.button {
  display: inline-block;
  background:  transparent;
  font-weight: bold;
  color: black;
  border: 1px solid black;
  padding: 13px 36px;
  font-size: 1.0em;
  text-decoration: none;
  margin-top: 10px;
}

.button:hover {
   border: 2px solid white;
   background:  #c0a040;
   color: black;
    font-weight: bold;
 padding: 13px 36px;
  text-decoration: none;
  margin-top: 10px;

}
.button2 {
  display: inline-block;
 background:  transparent;
 font-weight: bold;
  color: white;
  border: 1px solid white;
  padding: 13px 36px;
  font-size: 1.08em;
  text-decoration: none;
  margin-top: 10px;

}

.button2:hover {
   border: 1px solid white;
   background:  #c0a040;
   color: black;
    font-weight: bold;
     padding: 13px 36px;
       text-decoration: none;
  margin-top: 10px;

}

@media(max-width:900px) {
  .who-we-are-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .who-image img {
    width: 90vw;
    height: auto;
    max-width: 400px;
  }
  .who-title { font-size: 1.6em; }
  .who-subtitle { font-size: 1.2em; }
  .who-content p { font-size: 1em; }
}


/*aboutus ALL CSS*/
.about-us-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-us-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-us-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  background: linear-gradient(to bottom, rgba(24,24,24,0.30) 0%, rgba(24,24,24,0.70) 100%);
  z-index: 2;
}
.about-us-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}
.about-us-hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2.1em;
  color: #cea526;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.about-us-hero-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7em;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.founder-message {
  background:#c0a040;
  padding: 70px 0 50px 0;
  display: flex;
  justify-content: center;
}
.founder-message-inner {
  display: flex;
  max-width: 1600px;
  gap: 54px;
  align-items: center;
  width: 100%;

}
.founder-photo img {
  width: 400px;
  height: 570px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  align-self: left;
}
.founder-content {
  flex: 1;
  color: white;
}
.founder-heading {
  font-family: 'Marcellus', serif;
  font-size: 2.3em;
  font-weight: bolder;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.founder-text {
  font-size: 1.0em;
  margin-bottom: 18px;
  line-height: 1.7;
  font-family: 'Marcellus', serif;
}
.founder-signature {
  color: black;
  font-size: 1.1em;
  font-family: 'Dancing Script', cursive;
  margin-top: 24px;
}

.meet-the-team {
  background: #fff;
  padding: 60px 0;
}
.meet-team-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.meet-team-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #181818;
  margin-bottom: 38px;
}
.team-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-member {
  background: #f9f7f2;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(206,165,38,0.08);
  padding: 28px 14px 18px 14px;
  text-align: center;
  width: 220px;
  color: #181818;
}
.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
.team-member h4 {
  font-size: 1.13em;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-member span {
  font-size: 1em;
  color: #cea526;
}

.why-choose-us-mini {
  background: #f9f7f2;
  padding: 54px 0 34px 0;
}
.why-mini-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.why-mini-inner h2 {
  font-size: 2em;
  font-weight: 700;
  color: #181818;
  margin-bottom: 28px;
}
.why-mini-grid {
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
}
.why-mini-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(206,165,38,0.09);
  padding: 28px 18px 20px 18px;
  text-align: center;
  width: 210px;
  color: #181818;
}
.why-mini-icon {
  font-size: 2em;
  color: #cea526;
  margin-bottom: 12px;
  display: block;
}
.why-mini-item h4 {
  color: #cea526;
  font-size: 1.09em;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.why-mini-item p {
  color: #181818;
  font-size: 0.97em;
  opacity: 0.95;
}

@media(max-width:900px) {
  .founder-message-inner { flex-direction: column; gap: 22px;}
  .founder-photo img { width: 90vw; height: auto; max-width: 320px;}
  .team-grid, .why-mini-grid { flex-direction: column; gap: 20px;}
}
/* ---------- FORCE HIDE MOBILE NAV ON DESKTOP (add at end of file) ---------- */
/* Always hide mobile nav and overlay on desktop */
@media (min-width: 901px) {
  .mobile-nav,
  .mobile-nav-bg {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* On small screens, only show when .active is present */
@media (max-width: 900px) {
  .mobile-nav,
  .mobile-nav-bg {
    display: none; /* reset */
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-nav.active,
  .mobile-nav-bg.active {
    display: block;
    visibility: visible;
    pointer-events: auto;
  }
}




