 /* 1. General Setup & Variables */
 :root {
     --primary-color: #f89a30;
     /* A rich gold */
     --dark-bg: #1a1a1a;
     --light-bg: #ffffff;
     --text-dark: #2c2c2c;
     --text-light: #f5f5f5;
     --font-heading: 'Sora', sans-serif;
     --font-body: 'Inter', sans-serif;
     --border-radius: 8px;
     --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
 }

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

 html {
     scroll-behavior: smooth;
     scroll-padding-top: 80px;
     /* Offset for fixed nav */
 }

 body {
     font-family: var(--font-body);
     background-color: var(--light-bg);
     color: var(--text-dark);
     line-height: 1.6;
 }

 h1,
 h2,
 h3 {
     font-family: var(--font-heading);
     font-weight: 700;
     line-height: 1.2;
 }

 h2 {
     font-size: 2.5rem;
     text-align: center;
     margin-bottom: 3rem;
 }

 section {
     padding: 6rem 5%;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-family: var(--font-heading);
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-light);
     text-decoration: none;
     transition: var(--transition);
 }

 .logo:hover {
     transform: translateY(-2px);
 }

 .logo-image {
     width: 32px;
     height: 32px;
     border-radius: 6px;
     object-fit: cover;
     box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
     transition: var(--transition);
 }

 .logo:hover .logo-image {
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
     transform: scale(1.05);
 }

 .logo-text {
     display: flex;
     flex-direction: column;
     line-height: 1.1;
 }

 .logo-main {
     font-size: 1.4rem;
     font-weight: 700;
 }

 .logo-sub {
     font-size: 0.75rem;
     font-weight: 400;
     color: var(--primary-color);
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .cta-button {
     display: inline-block;
     background-color: var(--primary-color);
     color: var(--text-dark);
     padding: 12px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     font-family: var(--font-body);
     transition: var(--transition);
     border: 2px solid var(--primary-color);
 }

 .cta-button:hover {
     background-color: transparent;
     color: var(--primary-color);
 }

 .learn-more {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
 }

 .learn-more i {
     margin-left: 8px;
     transition: transform 0.3s ease;
 }

 .learn-more:hover {
     letter-spacing: 0.5px;
 }

 .learn-more:hover i {
     transform: translateX(5px);
 }

 /* 2. Enhanced Navigation with Mega Menu */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.5rem 5%;
     z-index: 1000;
     transition: background-color 0.4s ease, padding 0.4s ease;
 }

 nav.scrolled {
     background-color: rgba(26, 26, 26, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
     padding: 1rem 5%;
 }

 .nav-links {
     display: flex;
     gap: 3rem;
     align-items: center;
 }

 .nav-item {
     position: relative;
 }

 .nav-links>.nav-item>a {
     color: var(--text-light);
     text-decoration: none;
     font-weight: 500;
     padding: 10px 0;
     position: relative;
     display: flex;
     align-items: center;
     gap: 5px;
     transition: var(--transition);
 }

 .nav-links>.nav-item>a:hover {
     color: var(--primary-color);
 }

 .nav-links>.nav-item>a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: width 0.3s ease;
 }

 .nav-links>.nav-item>a:hover::after {
     width: 100%;
 }

 .nav-item.has-dropdown>a::after {
     width: 0 !important;
 }

 .dropdown-arrow {
     font-size: 0.8rem;
     transition: transform 0.3s ease;
 }

 .nav-item:hover .dropdown-arrow {
     transform: rotate(180deg);
 }

 /* Mega Menu Styles */
 .mega-menu {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     width: 800px;
     background: rgba(26, 26, 26, 0.98);
     backdrop-filter: blur(15px);
     border-radius: 15px;
     padding: 2rem;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
     border: 1px solid rgba(212, 175, 55, 0.2);
     margin-top: 15px;
 }

 .nav-item:hover .mega-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(5px);
 }

 .mega-menu-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
 }

 .mega-menu-section h4 {
     color: var(--primary-color);
     font-size: 1.1rem;
     margin-bottom: 1rem;
     font-family: var(--font-heading);
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .mega-menu-section h4 i {
     font-size: 1rem;
 }

 .mega-menu-links {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .mega-menu-links a {
     color: var(--text-light);
     text-decoration: none;
     padding: 8px 12px;
     border-radius: 8px;
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.95rem;
 }

 .mega-menu-links a:hover {
     background-color: rgba(212, 175, 55, 0.15);
     color: var(--primary-color);
     padding-left: 16px;
 }

 .mega-menu-links i {
     font-size: 0.9rem;
     width: 16px;
     text-align: center;
     opacity: 0.8;
 }

 .nav-cta {
     background-color: transparent;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     padding: 10px 25px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: var(--transition);
     font-size: 0.95rem;
 }

 .nav-cta:hover {
     background-color: var(--primary-color);
     color: var(--text-dark);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
 }

 /* Mobile Menu Styles */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
 }

 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background-color: var(--text-light);
     margin: 3px 0;
     transition: var(--transition);
 }

 .mobile-menu-toggle.active span:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
 }

 .mobile-menu-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-toggle.active span:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
 }

 .mobile-menu {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: rgba(26, 26, 26, 0.98);
     backdrop-filter: blur(15px);
     z-index: 1000;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     transform: translateX(-100%);
     transition: transform 0.3s ease-in-out;
     padding: 2rem;
 }

 .mobile-menu.active {
     transform: translateX(0);
 }

 .mobile-nav-links {
     display: flex;
     flex-direction: column;
     gap: 2rem;
     text-align: center;
     width: 100%;
     max-width: 300px;
 }

 .mobile-nav-item h4 {
     color: var(--primary-color);
     margin-bottom: 1rem;
     font-size: 1.3rem;
 }

 .mobile-nav-item ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
     margin-bottom: 2rem;
 }

 .mobile-nav-item a {
     color: var(--text-light);
     text-decoration: none;
     font-size: 1.1rem;
     padding: 8px 0;
     transition: var(--transition);
 }

 .mobile-nav-item a:hover {
     color: var(--primary-color);
 }

 .mobile-menu .nav-cta {
     margin-top: 2rem;
     font-size: 1.2rem;
     padding: 15px 30px;
 }

 /* 3. Hero Section */
 .hero {
     height: 100vh;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--text-light);
     padding: 0 5%;
 }

 .hero-video-wrapper {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

 .hero-video-wrapper::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
 }

 .hero-video-wrapper video,
 .hero-video-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 4rem;
     margin-bottom: 1rem;
 }

 .hero p {
     font-size: 1.25rem;
     max-width: 600px;
     margin: 0 auto 2rem;
     font-weight: 300;
 }

 .hero .cta-button:hover {
     background-color: var(--primary-color);
     color: var(--text-dark);
 }


 /* 4. Story Section */
 .story-section {
     background-color: #f7f7f7;
 }

 .story-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .story-text h2 {
     text-align: left;
     font-size: 2.5rem;
 }

 .story-text p {
     margin-bottom: 2rem;
     max-width: 500px;
 }

 .story-image img {
     width: 100%;
     height: 500px;
     object-fit: cover;
     border-radius: var(--border-radius);
 }

 /* 5. Activities Section */
 /* activities section */

 .safari-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 84px 20px;
     background-color: #fdfbf6;
 }

 .header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
 }

 .header::after {
     content: "";
     position: absolute;
     bottom: -20px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: #ffd700;
 }

 .header h2 {
     font-family: 'Playfair Display', serif;
     font-size: 3em;
     color: #2d3436;
     margin-bottom: 20px;
     position: relative;
 }

 .header p {
     font-family: 'Poppins', sans-serif;
     color: #636e72;
     font-size: 1.1em;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .activities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     padding: 20px;
 }

 .activity-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
 }

 .activity-card:hover {
     transform: translateY(-10px);
     /* box-shadow: 0 15px 30px rgba(0,0,0,0.15); */
 }

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

 .activity-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

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

 .activity-icon {
     position: absolute;
     right: 20px;
     top: 15px;
     background: #ffd700;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2d3436;
     font-size: 1.5em;
     box-shadow: 0 5px 15px rgba(224, 164, 88, 0.3);
 }

 .activity-content {
     padding: 30px 25px;
 }

 .activity-content h3 {
     font-family: 'Playfair Display', serif;
     font-size: 1.5em;
     color: #2d3436;
     margin-bottom: 15px;
 }

 .activity-content p {
     font-family: 'Poppins', sans-serif;
     color: #636e72;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .learn-more {
     display: inline-block;
     padding: 12px 30px;
     /* background: #2d3436; */
     color: #d2b414;
     text-decoration: none;
     border-radius: 25px;
     font-family: 'Poppins', sans-serif;
     font-weight: 500;
     transition: all 0.3s ease;

 }

 .learn-more:hover {
     background: transparent;
     color: #2d3436;
 }

 @media (max-width: 768px) {
     .activities-grid {
         grid-template-columns: 1fr;
     }

     .header h2 {
         font-size: 2.5em;
     }
 }


 /* 6. Destinations Section */
 /* destinations */


 .destinations-section {
     text-align: center;
     padding: 137px 40px;
     height: 100vh;
 }

 .destinations-section h2 {
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 /* Grid layout */
 .destinations-grid {
     display: flex;
     gap: 20px;
     justify-content: center;
 }

 .destination-card {
     position: relative;
     width: 250px;
     height: 300px;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .destination-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

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

 .destination-card h3 {
     position: absolute;
     bottom: 10px;
     left: 10px;
     color: white;
     font-size: 18px;
     font-weight: bold;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
 }


 /* Section styles */
 .trips-section {
     padding: 4rem 0;
 }

 @media (min-width: 640px) {
     .trips-section {
         padding: 6rem 0;
     }
 }

 .container {
     max-width: 80rem;
     margin: 0 auto;
     padding: 0 1rem;
 }

 @media (min-width: 640px) {
     .container {
         padding: 0 1.5rem;
     }
 }

 @media (min-width: 1024px) {
     .container {
         padding: 0 2rem;
     }
 }

 /* Header styles */
 .section-header {
     text-align: center;
 }

 .section-subtitle {
     font-size: 0.875rem;
     font-weight: 600;
     color: #4f46e5;
     letter-spacing: 0.05em;
     text-transform: uppercase;
 }

 .section-title {
     margin-top: 0.5rem;
     font-size: 1.875rem;
     font-weight: 800;
     color: #111827;
     letter-spacing: -0.025em;
     line-height: 1.1;
 }

 @media (min-width: 640px) {
     .section-title {
         font-size: 2.25rem;
     }
 }

 .section-description {
     margin-top: 1rem;
     max-width: 42rem;
     margin-left: auto;
     margin-right: auto;
     font-size: 1.25rem;
     color: #6b7280;
 }

 /* Grid styles */
 .trips-grid {
     margin-top: 3rem;
     display: grid;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .trips-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .trips-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 /* Trip card styles */
 .trip-card {
     position: relative;
     border-radius: 0.75rem;
     overflow: hidden;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
     transition: box-shadow 0.3s ease-in-out;
 }

 .trip-card:hover {
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 }

 .trip-image {
     width: 100%;
     height: 24rem;
     object-fit: cover;
     transition: transform 0.3s ease-in-out;
 }

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

 .trip-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
 }

 .trip-content {
     position: absolute;
     bottom: 0;
     left: 0;
     padding: 1.5rem;
 }

 .trip-info {
     display: flex;
     align-items: center;
     color: white;
 }

 .trip-icon {
     width: 1.5rem;
     height: 1.5rem;
     margin-right: 0.5rem;
     color: #a5b4fc;
 }

 .trip-title {
     font-size: 1.25rem;
     font-weight: 700;
     letter-spacing: -0.025em;
 }

 .destination-card:hover .destination-info p {
     opacity: 1;
     max-height: 50px;
     /* Adjust as needed */
 }


 /* testimonials */
 .testimonials-section {
     background-color: #f8f9fa;
     /* Light background for the section */
     padding: 80px 20px;
     text-align: center;
     font-family: 'Helvetica Neue', Arial, sans-serif;
     overflow: hidden;
     /* Important for slider transitions */
 }

 .section-title {
     font-size: 2.5rem;
     margin-bottom: 50px;
     color: #333;
 }

 /* Slider container */
 .testimonial-slider-container {
     max-width: 900px;
     margin: 0 auto;
     position: relative;
 }

 .testimonial-slider {
     display: flex;
     /* We'll use JS to move this container */
     transition: transform 0.5s ease-in-out;
 }

 /* Individual slide styling */
 .testimonial-slide {
     min-width: 100%;
     box-sizing: border-box;
     display: none;
     /* Hide all slides by default */
     background-color: #ffffff;
     border-radius: 12px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     margin: 0;
     /* Reset figure margin */
     padding: 40px;
     align-items: center;
     gap: 40px;
     /* Space between text and image */
 }

 .testimonial-slide.active {
     display: flex;
     /* Show only the active slide */
 }

 /* Make it responsive */
 @media (max-width: 768px) {
     .testimonial-slide.active {
         flex-direction: column;
         text-align: center;
     }
 }

 .slide-content {
     flex: 1;
     position: relative;
     /* For positioning the quote icon */
     padding-left: 50px;
 }

 /* Decorative quote icon */
 .slide-content::before {
     content: '"';
     position: absolute;
     left: 0;
     top: -10px;
     font-size: 5rem;
     color: #e0e0e0;
     font-family: 'Times New Roman', serif;
     z-index: 1;
 }

 .quote-text {
     font-size: 1.25rem;
     line-height: 1.6;
     color: #555;
     font-style: italic;
     position: relative;
     z-index: 2;
     /* Ensure text is above the quote icon */
     margin: 0 0 20px 0;
 }

 .testimonial-author {
     text-align: left;
     padding-left: 50px;
 }

 .author-name {
     display: block;
     font-weight: bold;
     color: #333;
 }

 .author-title {
     font-size: 0.9rem;
     color: #777;
 }

 /* Image styling */
 .slide-image-wrapper {
     flex-basis: 250px;
     /* Fixed width for the image container */
 }

 .testimonial-image {
     width: 200px;
     height: 200px;
     border-radius: 50%;
     /* Circular images look great for profiles */
     object-fit: cover;
     /* Prevents image distortion */
     border: 5px solid #fff;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 /* Controls styling */
 .slider-controls {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 200px;
     /* Fixed width for controls */
     margin: 30px auto 0;
     /* Center the controls below */
 }

 .slider-arrow {
     background: transparent;
     border: 1px solid #ccc;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 0.3s ease;
     color: #555;
 }

 .slider-arrow:hover {
     background-color: #333;
     color: #fff;
     border-color: #333;
 }

 .slider-arrow:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 .slide-indicator {
     font-size: 1.1rem;
     font-weight: bold;
     color: #555;
 }

 /* 8. Contact Section */
 .contact-section {
     background-color: var(--dark-bg);
     color: var(--text-light);
     text-align: center;
 }

 .contact-section h2 {
     color: var(--light-bg);
 }

 .contact-subtitle {
     max-width: 500px;
     margin: -2rem auto 3rem;
     color: #aaa;
 }

 .contact-form {
     max-width: 700px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .form-row {
     display: flex;
     gap: 1.5rem;
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 1rem;
     background-color: #2a2a2a;
     border: 1px solid #444;
     border-radius: var(--border-radius);
     color: var(--text-light);
     font-family: var(--font-body);
 }

 .contact-form input::placeholder,
 .contact-form textarea::placeholder {
     color: #888;
 }

 .contact-form .cta-button {
     align-self: center;
     cursor: pointer;
 }

 .contact-form .cta-button:hover {
     color: var(--primary-color);
 }

 /* 9. Footer */
 .footer {
     background-color: var(--dark-bg);
     color: #a0a0a0;
     padding: 4rem 5% 2rem;
 }

 .footer-col .logo {
     margin-bottom: 1rem;
     display: block;
 }

 .footer-col ul {
     list-style: none;
 }

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

 .footer-col ul a,
 .footer-col ul li {
     color: #a0a0a0;
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-col ul a:hover {
     color: var(--primary-color);
     padding-left: 5px;
 }

 .social-links a {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     background-color: #2a2a2a;
     color: var(--text-light);
     border-radius: 50%;
     margin-right: 10px;
     text-decoration: none;
     transition: var(--transition);
 }

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

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid #333;
 }

 .see-all-link {
     display: inline-block;
     margin-top: 20px;
     color: #000;
     font-weight: bold;
     text-decoration: none;
     transition: color 0.3s ease;
     width: 100%;
 }

 /* 10. Responsive Design */
 @media (max-width: 1200px) {
     .mega-menu {
         width: 700px;
     }
 }

 @media (max-width: 992px) {
     h2 {
         font-size: 2rem;
     }

     .hero h1 {
         font-size: 3rem;
     }

     .story-content {
         grid-template-columns: 1fr;
     }

     .story-image {
         grid-row: 1;
     }

     .destinations-grid {
         grid-template-columns: 1fr 1fr;
     }

     .mega-menu {
         width: 600px;
     }

     .mega-menu-content {
         gap: 2rem;
     }
 }

 @media (max-width: 768px) {
     html {
         scroll-padding-top: 70px;
     }

     section {
         padding: 4rem 5%;
     }

     .nav-links,
     .nav-cta {
         display: none;
     }

     .mobile-menu-toggle {
         display: flex;
     }

     nav {
         padding: 1rem 5%;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

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

     .destinations-grid,
     .trips-grid {
         grid-template-columns: 1fr;
     }

     .form-row {
         flex-direction: column;
     }

     .mega-menu {
         width: 90vw;
         padding: 1.5rem;
     }

     .mega-menu-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
 }