@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:where([class^="ri-"])::before { content: "\f3c2"; }
.nav-link.active { color: #ffce00; border-bottom: 2px solid #ffce00; }
.destination-card:hover .overlay { opacity: 1; }
.language-selector:hover .language-dropdown { display: block; }

.separator {
width: 180px;
height: 4px;
background-color: #ffce00;
margin: 0 auto 10px;
border-radius: 2px;
}

html, body {
  font-family: 'roboto';
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #056839;
  --secondary: #ffce00;
  --primary-light: #cfb446;
  --text-dark: #000000;
  --text-light: #faf6f6;
  --bg-light: #f8f9fa;
  --primary-color: #ffce00;
  --color:#056839;
  --secondary-color: #d62828;
  --secondary-light: #f0c75e;
  --accent-color: #3a7d44;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333333;
  --primary-light: #cfb446;
  --text-dark: #000000;
  --white: #056839;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 50px;
  --border-color: #dee2e6;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ribbon-wildlife: #3B82F6;
  --ribbon-safari: #10B981;
  --ribbon-water: #06B6D4;
  --ribbon-adventure: #F59E0B;
  --ribbon-cultural: #8B5CF6;
  --transition-speed: 2s;
  --transition-speeds: 0.5s;
  }

  header {
    background: rgba(29, 60, 38, 0.95); /* Black with 10% opacity */
    transition: background-color 0.3s ease;
  }

.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.success-popup.hidden {
  display: none;
}

.success-popup .checkmark {
  font-size: 3rem;
  color: #056839;
  margin-bottom: 1rem;
}

.success-popup h3 {
  color: #056839;
  margin-bottom: 0.5rem;
}

.success-popup p {
  color: #666;
}

  .nav-link {
    position: relative;
    padding: 0.5rem 0;
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffce00;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link:hover::after {
    width: 100%;
    animation: growLine 0.4s ease forwards;
}

.nav-link:hover {
    color: #ffce00 !important;
}

.nav-item {
  position: relative;
  flex: 1;
  text-align: center;
}


.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  flex: 4;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffce00;
}



.destination-panel {
  position: absolute;
  margin-top: 35%;
  background: white;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
  width: 900px;
  margin-left: 103%;
  transform: translateX(-50%) translateY(-10px);
  padding: 20px;
     
}

/* Full width for Uganda panel */
.nav-item:first-child .destination-panel {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  border-radius: 0;
  padding: 30px 20px;
  height: 620px;
}

.nav-item:hover .destination-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item:last-child .destination-panel{
  margin-left: -100%;
}

.panel-content {
  display: flex;
  align-items: stretch;
}

.safari-links {
  flex: 1;
  padding: 15px;
  background: white;
}

.destination-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.destination-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 60%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #27ae60;
}

.expedition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* For Uganda - 3 columns */
.nav-item:first-child .expedition-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* For other countries - 2 columns */
.nav-item:not(:first-child) .expedition-grid {
  grid-template-columns: repeat(2, 1fr);
}

.safari-link {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.safari-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-color: #d5e8d4;
  background: #f9fdf9;
}

.safari-link:hover .journey-name {
  color: #27ae60;
}

.journey-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 8px;
  margin-left: -20%;
  line-height: 1.4;
}

.duration-badge {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: 10px;
  right: 5px;
}

.adventure-visual {
  flex: 0 0 250px;
  background: linear-gradient(135deg, #27ae60 0%, #2c3e50 100%);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.adventure-visual h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.adventure-visual p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}



/* Target the header language selector */
.language-selector .language-dropdown {
  min-width: 220px;
  max-width: 280px;
}

.language-selector .language-option {
  padding-left: 20px;
  padding-right: 20px;
}

/* Add to your CSS file */
.language-dropdown {
  max-height: 300px; /* Adjust based on your needs */
  overflow-y: auto; /* Enable vertical scrolling */
  width: 520px; /* Adjust width as needed */
  border-radius: 8px;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #e5e7eb #f5f5f5; /* For Firefox */
}

/* Style scrollbar for Webkit browsers */
.language-dropdown::-webkit-scrollbar {
  width: 5px;
}

.language-dropdown::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.language-dropdown::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 10px;
  border: 2px solid #f5f5f5;
}

/* Ensure proper positioning */
.translation-button {
  position: relative;
  z-index: 1000;
}
    
    .language-option {
      padding: 8px 12px;
      cursor: pointer;
      text-align: left;
      border: none;
      background: none;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .language-option:hover {
      background-color: #f5f5f5;
    }
    
    .flag-icon {
      width: 24px;
      height: 18px;
      display: inline-block;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    /* Language icon SVG styling */
    .language-icon {
      width: 24px;
      height: 24px;
      fill: white;
    }
    
    /* Hide Google Translate widget */
    .skiptranslate {
      display: none !important;
    }
    body {
      top: 0 !important;
    }

    /* Positioning for the button - can be moved anywhere */
    .translation-container {
      position: fixed;
      bottom: 300px;
      right: 20px;
      z-index: 1000;
    }

    .notranslate {
      transform: none !important;
    }

    header {
      margin-top: 40px;
    }


/* Info strip styles */

.info-strip-container {
  position: fixed;
  top: 0; /* Stick to top */
  left: 0; /* Stick to left */
  width: 100%; /* Full width */
  height: 50px;
  z-index: 999; 
  padding: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}
  
  .info-strip {
      top: -10px;
      background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
      color: var(--light-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      animation: fadeIn 1s ease-in;
      position: relative;
      z-index: 1;
  }
  

  
  .contact-details, .social-media {
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
  }
  
  .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      transition: transform var(--transition-speed);
      padding: 4px 0;
  }
  
  .contact-item:hover {
      transform: translateY(-2px);
  }
  
  .contact-item i {
      color: var(--primary-color);
      animation: pulse 1s infinite alternate;
  }
  
  .phone-number {
      position: relative;
      transition: color var(--transition-speed);
  }
  
  .phone-number:hover {
      color: var(--primary-color);
      animation: glow 1.5s infinite alternate;
  }
  
  .social-icons-container {
      display: flex;
      gap: 15px;
      background: rgba(255, 255, 255, 0.1);
      padding: 5px 15px;
      border-radius: 20px;
      backdrop-filter: blur(5px);
  }
  
  .social-icon {
      color: var(--accent-color);
      font-size: 16px;
      transition: all var(--transition-speed);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
  }
  
  .social-icon:hover {
      transform: scale(1.3) rotate(5deg);
      color: var(--light-color);
  }
  
  .social-icon:hover::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: rgba(255, 215, 0, 0.2);
      animation: ripple 1s infinite;
  }
  
  /* Animations */
  @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes glow {
      from { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
      to { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5); }
  }
  
  @keyframes floatAcross {
      0% { transform: translateX(0) rotate(0deg); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateX(calc(100vw + 100px)) rotate(20deg); opacity: 0; }
  }
  
  @keyframes pulse {
      from { transform: scale(1); }
      to { transform: scale(1.2); }
  }
  
  @keyframes ripple {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(2); opacity: 0; }
  }
  
  @keyframes moveBg {
      from { background-position: 0 0; }
      to { background-position: 400px 0; }
  }
  
      /* Responsive adjustments */
      @media (max-width: 1023px) {
        /* Hide info strip on tablets and mobile */
        .info-strip-container {
          display: none;
        }
        
        /* Adjust header top position when info strip is hidden */
        header {
          top: 0;
        }
      }
      
      @media (min-width: 1024px) {
        /* Show info strip on desktop */
        .info-strip-container {
          display: block;
        }
        
        /* Adjust header position to account for info strip */
        header {
          top: 10px; /* Height of info strip */
        }
      }
      
      /* Mobile menu button styling */
      #mobileMenuButton {
        display: none;
        background: transparent;
        border: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
      }
      
      @media (max-width: 767px) {
        header{
          top: -50px;
        }

        nav{
          top: 50px;
        }

        #mobileMenuButton {
          display: block;
        }
      }




  /* Mobile Menu Styles */
  .mobile-menu {
    transition: transform 0.3s ease-in-out;
  }
  
  /* Prevent scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Mobile menu link hover effects */
  .mobile-menu a:hover {
    color:#056839; /* primary color */
  }
  
  /* Submenu animation */
  .mobile-menu .relative.group div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mobile-menu .relative.group:hover div,
  .mobile-menu .relative.group:focus-within div {
    max-height: 500px;
  }

    /* Mobile Menu Styles */
    #mobileMenu {
      will-change: transform;
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
      overflow: hidden;
    }
    
    /* Smooth transitions */
    #mobileMenu, #mobileDestinationsMenu {
      transition: all 0.3s ease-in-out;
    }
    
    /* Mobile menu links */
    #mobileMenu a {
      transition: color 0.2s ease;
      display: block;
      padding: 0.5rem 0;
    }
    
    /* Dropdown arrow transition */
    #mobileDestinationsButton i {
      transition: transform 0.2s ease;
    }



/* Floating CTA button */
.floating-cta {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Enhanced Mega Menu Styles */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(10px);
}

.group:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-container {
  position: absolute;
  top: 20px;
  left: 60%;
  transform: translateX(-60%);
  width: 100vw;
  max-width: 1200px;
  background: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 0 0 12px 12px;
  padding: 2rem;
  z-index: 50;
  border-top: 3px solid#056839;
}

.mega-menu-column {
  transition: transform 0.3s ease;
}

.mega-menu-column:hover {
  transform: translateY(-5px);
}

.mega-menu-link {
  transition: all 0.2s ease;
  border-radius: 6px;
}

.mega-menu-link:hover {
  background-color: #f7fafc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mega-menu-footer {
  background: linear-gradient(to right, #f7fafc, #fff);
  border-top: 1px solid #e2e8f0;
}

/* Language Selector */
.language-selector {
  position: relative;
  z-index: 50;
  color: #fff;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 140px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.language-option:hover {
  background: #f5f5f5;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .carousel-inner {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(5, 104, 57, 0.85) 0%, rgba(5, 104, 57, 0.6) 50%, transparent 100%);
            z-index: 1;
        }
        
        .content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 900px;
            padding: 0 5%;
            animation: fadeInUp 1s ease-out;
        }
        
        .tag {
            background: var(--secondary);
            color: var(--primary);
            display: inline-block;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .tag-header {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .highlight {
            color: var(--secondary);
            position: relative;
        }
        
        .highlight:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 206, 0, 0.3);
            z-index: -1;
        }
        
        p {
            font-size: 1.2rem;
            line-height: 2.0;
            margin-bottom: 20px;
            max-width: 500px;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background: #e6b800;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        
        .btn-outline {
            background: rgba(241, 241, 238, 0.2);
            border: 2px solid #fff;
            color: var(--secondary);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: rgba(255, 206, 0, 0.4);
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .carousel-control:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev {
            left: 30px;
        }
        
        .next {
            right: 30px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: var(--secondary);
            transform: scale(1.3);
        }
        
        .features {
            position: absolute;
            bottom: 40px;
            right: 5%;
            display: flex;
            gap: 20px;
            z-index: 10;
        }
        
        .feature-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 20px;
            width: 160px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 12px;
        }
        
        .feature-title {
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 992px) {
            .tag-header {
                font-size: 2.8rem;
            }
            
            .features {
                display: none;
            }
            
            .content {
                text-align: center;
                align-items: center;
                max-width: 80%;
                margin: 0 auto;
            }
            
            .btn {
                display: block;
                margin: 10px auto;
                max-width: 450px;
            }
            
            .btn-outline {
                margin-left: 0;
            }
        }
        
        @media (max-width: 576px) {
            .tag-header {
                font-size: 2.2rem;
            }
            
            p {
                font-size: 1rem;
            }
            
            .carousel-control {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .prev {
                left: 15px;
            }
            
            .next {
                right: 15px;
            }
            
        }


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}




.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-light);
    transition: width 0.5s ease;
    z-index: -1;
}

.cta-button:hover:before {
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}




        .containers {
            max-width: 12000px;
            width: 100%;
            margin: 0 auto;
        }
        
        .itinerary-section {
            background: linear-gradient(rgba(5, 104, 57, 0.9) 0%, rgba(5, 104, 57, 0.95) 100%), url('https://images.unsplash.com/photo-1545579133-99bb5ab189bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-position: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            display: flex;
            color: white;
            position: relative;
        }
        
        .itinerary {
            padding: 50px;
            flex: 1;
            position: relative;
            z-index: 2;
        }
        
        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .header p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            max-width: 600px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .icon {
            background: #ffce00;
            color: #056839;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            font-size: 1.4rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .highlight-text h3 {
            font-size: 1.25rem;
            margin-bottom: 5px;
        }
        
        .highlight-text p {
            opacity: 0.85;
            line-height: 1.5;
        }
        
        .contact-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-top: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-section h2 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .contact-items {
            flex: 1;
            min-width: 250px;
        }
        
        .contact-items h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .contact-items a {
            color: #ffce00;
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 0;
        }
        
        .contact-items a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary {
            background: #ffce00;
            color: #056839;
        }
        
        .btn-primary:hover {
            background: #e6b900;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid #ffce00;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }
        
        .decoration {
            position: absolute;
            z-index: 1;
        }
        
        
        .pattern {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 250px;
            height: 250px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="10" fill="%23ffce00" opacity="0.3"/></svg>');
            opacity: 0.1;
            z-index: 1;
        }
        
        @media (max-width: 900px) {
            .itinerary-section {
                flex-direction: column;
            }
            
            .content {
                padding: 40px 30px;
            }
            
            .header h1 {
                font-size: 2.3rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
            .highlights {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .content {
                padding: 30px 20px;
            }
        }


/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    margin-top: -90px;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 10px auto 0;
    font-size: 1.2rem;
}

/* Featured Tours Slider */
.featured-tours {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    color: white;
    position: relative;
}

.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 0;
}

.slide-content {
    position: absolute;
    bottom: 100px; /* Positions content above controls */
    left: 50px;
    right: 50px;
    z-index: 2;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide h3 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.slide-info {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.slide-info span {
    margin-right: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.slide-info i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.slide-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slide-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    transition: width 0.5s ease;
    z-index: -1;
}

.slide-button:hover:before {
    width: 100%;
}

.slide-button:hover {
    color: var(--dark);
    transform: translateY(-3px);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    z-index: 10;
}

.slider-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    margin-left: 15px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-control:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50px;
    display: flex;
    z-index: 10;
}

.slider-indicator {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
}


/* Tours Section */
.tours-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.country-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 15px;
}

.country-tab {
    background: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.country-tab:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.5s ease;
    z-index: -1;
}

.country-tab:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.country-tab:hover:before {
    width: 100%;
}

.country-tab.active {
    background-color: var(--primary);
    color: white;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tour-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.tour-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.activity-tag {
    background-color: #e6f0e6;
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tour-locations {
    color: #666;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tour-locations i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.tour-link {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.tour-link:hover {
    background-color: #134013;
}

        /* Parallax Section */
        .parallax-section {
            position: relative;
            height: 500px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?q=80&w=1772&auto=format&fit=crop');
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 42, 30, 0.8);
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 20px;
        }

        .parallax-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .parallax-content p {
          margin-left: 15%;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Call to Action */
        .cta-section {
            padding: 100px 0;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: url('https://th-i.thgim.com/public/incoming/fihxy8/article69150314.ece/alternates/FREE_1200/serengeti%202.jpg');
            color: white;
            text-align: center;
        }

        .cta-section .section-title h2 {
            color: white;
        }

        .cta-section .section-title p {
            color: rgba(255,255,255,0.8);
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .cta-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .cta-section .cta-button {
            background: var(--secondary);
            color: var(--dark);
            padding: 15px 40px;
            font-size: 1.1rem;
        }

        .cta-section .cta-button:hover {
            background: white;
            color: var(--dark);
        }

        

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(50px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .slider-container {
        height: 450px;
    }
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .slider-container {
        height: 500px;
    }
    
    .tour-card {
        max-width: 400px !important;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        color: white;
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .country-tab {
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .cta-button {
        padding: 14px 35px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .slider-container {
        height: 600px;
    }
    
    .slide h3 {
        font-size: 2rem;
    }
    
    .slide-info span {
        font-size: 0.95rem;
        margin-right: 15px;
        margin-top: 10%;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
}



            /* Redesigned sidebar button container with center panel positioning */
        .sidebar-button-container {
            position: fixed;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        /* Modern professional button design */
        .sidebar-button {
            background: linear-gradient(135deg, #cc7f0c 0%, #db4905 100%);
            color: white;
            padding: 18px 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 320px;
            position: relative;
            border-right: 4px solid #0bf52a;
        }

        .sidebar-button:hover {
            opacity: 0;
            transform: translateX(20px) translateY(-50%);
        }

        /* Professional logo with SafariBookings colors */
        .safari-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }

        /* Centered hover panel with professional SafariBookings design */
        .hover-panel {
            position: fixed;
            left: 27%;
            top: -120%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 0;
            width: 480px;
            max-height: 900px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .sidebar-button-container:hover .hover-panel {
            opacity: 1;
            visibility: visible;
        }
        .safari-logo img{
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .partner-text {
            display: inline;
            }
        /* Professional header section */
        .panel-headers {
            background: linear-gradient(135deg, #f58e07 0%, #db5314 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .panel-headers h3 {
            font-size: 25px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .panel-headers p {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .close-btn:hover {
            opacity: 1;
        }

        /* Trust indicators section */
        .trust-section {
            padding: 20px 25px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #f59e0b;
            font-size: 18px;
        }

        .rating-text {
            font-weight: 600;
            color: #1f2937;
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #166534;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Professional reviews section matching SafariBookings design */
        .reviews-section {
            padding: 25px;
            max-height: 260px;
            overflow-y: auto;
        }

        .review {
            margin-bottom: 20px;
            padding: 20px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .reviewer-details {
            font-size: 12px;
            color: #6b7280;
            margin-top: 2px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .review-stars {
            color: #f59e0b;
            font-size: 14px;
        }

        .review-score {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .review-text {
            color: #374151;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-meta {
            font-size: 11px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
            padding-top: 8px;
        }

        /* Professional action section */
        .action-section {
            max-height: 200px;
            padding: 20px 15px;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }

        .review-count {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .action-button {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
        }

        /* Custom scrollbar for reviews */
        .reviews-section::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-section::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar-button {
                min-width: 80px;
                font-size: 14px;
                padding: 15px 20px;
            }
            
            .hover-panel {
                left: -180%;
                width: 90vw;
                max-width: 500px;
                max-height: 80vh;
            }
              .partner-text {
                display: none;
            }
        
        }