/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
 -ms-overflow-style: none;
 scrollbar-width: none;
 -webkit-tap-highlight-color: transparent;

 
 

}


::-webkit-scrollbar{
  display: none;
}

/* NAVBAR *//* Top Bar Styles */
.top-bar {
   position: relative; /* Required for the background positioning */
    color: white;
    font-size: 12px;
    padding: 8px 8% 15px 8%; /* Added extra bottom padding for the jagged edge */
    z-index: 1001; /* Ensure it stays above the main navbar */
    background-color: #4a5d23; /* Dark Green */
   
    /* Creates the wavy/torn edge at the bottom */
}

/* This creates the green shape WITHOUT cutting off the dropdowns */
.top-bar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4a5d23;
    z-index: -1; /* Puts the green behind the text */
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 98% 88%, 95% 85%, 92% 90%, 88% 85%, 85% 88%, 80% 85%, 75% 90%, 70% 85%, 65% 88%, 60% 85%, 55% 90%, 50% 85%, 45% 88%, 40% 85%, 35% 90%, 30% 85%, 25% 88%, 20% 85%, 15% 90%, 10% 85%, 5% 88%, 0% 85%);
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-right a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

/* Navbar Styles */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: visible !important;
  background: #f4eee1; /* Cream background */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8%;
}

.logo {
  color: #333;
  font-family: 'Arial Black', sans-serif;
  font-size: 24px;
}
.logo a{

  color: #333;
  text-decoration: none;

 font-family: 'Arial Black', sans-serif;
  font-size: 24px;
}
.nav-links a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* The Orange Button */
.btn-quote {
  background: #d9532f; /* Rust/Orange color */
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff !important;
  font-weight: bold;
  font-size: 14px;
}

.btn-quote:hover {
    background: #bf4626;
}

/* Container for top bar items */
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Dropdown Container */
.top-dropdown {
    position: relative;
    display: inline-block;
}

/* Top Bar Links & Buttons */
.top-right a, .top-dropbtn {
    color: white;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

/* Dropdown Menu Styling */
.top-dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Aligns menu to the right edge */
    top: 30px;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 9999; /* Ensure it stays above the main navbar */
    border-radius: 4px;
    margin-top: 5px;
}

/* Links inside the dropdown */
.top-dropdown-content a {
    color: #333 !important; /* Force dark text on white background */
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #eee;
}

.top-dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover States */
.top-dropdown-content a:hover {
    background-color: #f4eee1;
    color: #d9532f !important;
}

.top-dropdown:hover .top-dropdown-content {
    display: block;
}

.top-dropdown:hover .top-dropbtn {
    opacity: 0.8;
}


/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the dropdown menu itself */
/* Updated Dropdown Design */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 240px; /* Slightly wider for longer itinerary names */
    box-shadow: 0px 15px 35px rgba(0,0,0,0.1); /* Softer, larger shadow */
    z-index: 1000;
    top: 100%;
    left: 0;
    
    border-radius: 0 0 4px 4px; /* Round only bottom corners */
    padding: 15px 0;
    border-top: 3px solid #4B5320; /* The Olive Green accent from the image */
    animation: fadeIn 0.2s ease-in-out; /* Smooth entrance */
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #444;
    padding: 10px 25px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border-bottom: 1px solid #f9f9f9; /* Subtle separator */
}
.dropdown:hover .dropdown-content {
display: block !important;
visibility: visible;
opacity: 1;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover Effect */
.dropdown-content a:hover {
    background-color: #f8f5ee; /* Light parchment tint */
    color: #4B5320; /* Changes to olive green on hover */
    padding-left: 30px; /* Slight slide-in effect */
}

/* Arrow indicator tweak */
.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Simple Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Keep the parent link highlighted */
.dropdown:hover .dropbtn {
    color: #4B5320 !important;
}


/* MEGA MENU SPECIFIC */
.mega-menu {
  margin-top: 20px;
    width: 90vw; /* Takes up most of the screen width */
    max-width: 1100px;
    left: 50%; /* Center the menu */
    transform: translateX(-30%);
    display: none; /* Controlled by hover */
    flex-direction: row;
    padding: 0; /* Remove padding to let sides flush */
    border-top: 4px solid #4B5320;
}

.dropdown:hover .mega-menu {
       display: flex !important; /* Flex layout for left/right split */
    
}
/* Ensure the container is a flex row and resets standard dropdown behavior */
.dropdown-content.mega-menu {
    display: none; /* Hidden by default */
    flex-direction: row; /* Aligns left and right divs side-by-side */
    align-items: stretch; /* Ensures the green box matches the height of the left side */
    width: 90vw;
    max-width: 1100px;
    padding: 0; 
    overflow: hidden; /* Keeps corners clean */
}

/* Left Content Area */
.mega-left {
    flex: 3;
    padding: 30px;
    background: #fff;
}

.mega-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mega-header a {
    font-weight: bold;
    color: #4B5320 !important;
    font-size: 14px;
}

/* 4-Column Image Grid */
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    
}

.grid-item1 {
    cursor: pointer;
}

.grid-item1 img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 2px;
    transition: 0.3s;
}

.grid-item1 span {
    display: block;
    font-size: 10px;
    font-weight: bold;
    margin-top: 5px;
    color: #333;
    text-transform: uppercase;
}

.grid-item1:hover img {
    filter: brightness(0.8);
}

/* Right Sidebar (Green Box) */
.mega-right {
    flex: 1;
    background: #4B5320;
    color: white;
    padding: 30px;
    text-align: left;
}

.mega-right h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.promo-img img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.mega-right p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn-mega-quote {
    display: block;
    background: #FFB100;
    color: #000;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
}

.small-note {
    font-size: 10px !important;
    margin-top: 15px;
    opacity: 0.8;
}

/*   */



/* Mobile Menu Toggle Styling */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Responsive Media Query */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        height: 100vh;
        width: 250px;
        background: #f4eee1;
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
         /* ... existing styles ... */
        z-index: 9999 !important; /* Force it to the very front */
        display: flex !important; /* Ensure it isn't set to display: none */
        background-color: #f4eee1; /* Make sure background isn't transparent */
    }

  
    .nav-links.active {
        right: 0 !important; /* Slide in when active */
    }

    .nav-links a {
        margin: 15px 0;
        display: block;
        font-size: 16px;
    }

    /* Handle Mega Menu on mobile (simplified) */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
}


.menu-toggle span {
    display: block; /* Ensure they have a block display */
    width: 25px;
    height: 3px;
    background-color: #333; /* Dark color to show on your cream navbar */
    margin-bottom: 5px; /* Spacing between bars */
}


/*           */



/* HERO */
.hero {
  height: 100vh;
  background: url('../assets/images/hero/safari.webp' ) center/cover no-repeat ;
  position: relative;
  display: flex;
  align-items: center;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
   max-width: 700px;
  transform: translateY(-50%);
  color: #fff;
}
.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}
.btn-main {
  background: #1F7A63;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-main:hover {
  background: #159b85;
}

/* NEW HERO FORM STYLES */
.hero-form-card {
  position: absolute;
  top: 50%;
  right: 8%; /* Aligns to the right side */
  transform: translateY(-50%);
  background: #4B5320; /* Olive green from your reference */
  padding: 25px;
  width: 340px;
  border-radius: 4px;
  color: white;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.avatar-small {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #FFB100;
  object-fit: cover;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.input-group label {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ddd;
}

.input-group select, 
.input-group input {
  padding: 10px;
  border: none;
  border-radius: 2px;
  font-size: 13px;
  outline: none;
}

.btn-form {
  width: 100%;
  background: #FFB100; /* Bright yellow/orange */
  color: #000;
  border: none;
  padding: 14px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.3s;
}

.btn-form:hover {
  background: #e6a000;
}

.form-footer {
  font-size: 10px;
  text-align: center;
  opacity: 0.8;
  margin: 0;
}

/* Responsive adjustment for small screens */
@media (max-width: 1024px) {
  .hero-form-card {
    display: none; /* Hides the form on tablet/mobile to avoid overlapping text */
  }
}


/* TRUST STRIP */
.trust-strip {
  display: flex;
  justify-content: space-around;
  padding: 25px 8%;
  background: #f8f9fa;
  font-size: 14px;
  font-weight: bold;
}
.trust-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* DESTINATIONS */
.destinations {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}
.destinations .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.destinations .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.destination-card:hover {
  transform: translateY(-5px);
}
.destination-card img {
  width: 100%;
  display: block;
  transition: scale 0.3s;
}
.destination-card:hover img {
  transform: scale(1.1);
}
.destination-info {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.destination-info h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
}
.destination-info p {
  font-size: 14px;
  margin-bottom: 10px;
}
.btn-card {
  display: inline-block;
  padding: 8px 15px;
  background: #E9C46A;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-card:hover {
  background: #F4A261;
  color: #fff;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 8%;
  background: #f9f9f9;
  text-align: center;
}
.how-it-works .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.how-it-works .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.step-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.step-card:hover {
  transform: translateY(-5px);
}
.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: #555;
}

/* FOOTER */


/* FOOTER STYLE */
.site-footer {
  background: #E5D3B3; /* Light parchment color from image */
  color: #333;
  font-family: 'Arial', sans-serif;
  padding: 0;
}

.footer-top-banner {
  background: #4B5320; /* Olive green */
  color: white;
  padding: 15px 8%;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #3d441a;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 8%;
}

.brand-name {
  font-size: 28px;
  color: #4B5320;
  margin-bottom: 20px;
}

.brand-name span { color: #8B4513; } /* Accent color for 'Tour' */

.phone-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links h4, .footer-newsletter h4 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover { text-decoration: underline; }

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px;
  border: 1px solid #ccc;
  background: #fff;
}

.newsletter-form button {
  background: #3d441a;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.footer-social{
  margin-top: 20px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons img {
  width: 20px;
  filter: grayscale(100%);
}

.footer-bottom {
  text-align: left;
  padding: 20px 8%;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #d4c3a3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 40px 5%;
  }
}


/*   */



/* GRID STYLES */
.tour-guide {
  text-align: center;
  padding: 60px 8%;
  background-color: #f9f7f2;
}

.section-title { font-size: 2rem; color: #4B5320; margin-bottom: 5px; }
.section-subtitle { font-size: 0.9rem; font-weight: bold; margin-bottom: 40px; }

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tour-card {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FFB100; /* Yellow price tag */
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  text-align: left;
}

/* BOOKING SECTION */
.booking-section {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
}

.booking-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
}

.text-side { flex: 1; }
.text-side h3 { color: #4B5320; margin-bottom: 15px; }

.image-side { flex: 1; display: flex; justify-content: center; }

/* The 'splat' or irregular circle effect */
.circle-image-container {
  width: 400px;
  height: 400px;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%); /* For a clean circle */
  /* Or use a mask-image for the 'rough edge' look in the photo */
}

.circle-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-primary {
  display: inline-block;
  background: #FFB100;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .booking-content { flex-direction: column-reverse; text-align: center; }
  .circle-image-container { width: 300px; height: 300px; }
}





/*  */


/*   */

/* REVIEWS SECTION STYLES */
.reviews-section {
  background-color: #4B5320; /* Olive Green */
  color: white;
  padding: 80px 8%;
  text-align: center;
}

.reviews-header h2 { font-size: 24px; margin-bottom: 5px; }
.reviews-header p { font-size: 14px; margin-bottom: 40px; color: #E5D3B3; }

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto; /* Allows scrolling on mobile */
}

.review-card {
  background: rgba(0, 0, 0, 0.2); /* Slightly darker than background */
  padding: 30px;
  border-radius: 4px;
  min-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text { font-style: italic; margin: 15px 0; font-size: 14px; line-height: 1.6; }
.reviewer-info { font-size: 13px; color: #ccc; margin-bottom: 10px; }
.trust-badge { font-size: 12px; color: #FFB100; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }

/* WHY CHOOSE SECTION STYLES */
.why-choose-section {
  background-color: #E5D3B3; /* Cream Background */
  padding: 80px 8%;
  text-align: center;
  color: #333;
}

.why-header h2 { color: #4B5320; margin-bottom: 5px; }
.why-intro { max-width: 800px; margin: 20px auto 40px; line-height: 1.6; font-size: 15px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns like the image */
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item .check {
  background: #FFB100;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

/* BUTTON STYLES */
.why-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-proposal, .btn-itineraries {
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-proposal {
  background-color: #D9534F; /* Reddish orange for urgency */
  color: white;
}

.btn-itineraries {
  background-color: #4B5320; /* Matching olive green */
  color: white;
}

.btn-proposal:hover, .btn-itineraries:hover { opacity: 0.9; }

/* Mobile View */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .why-buttons { flex-direction: column; align-items: center; }
  .btn-proposal, .btn-itineraries { width: 100%; max-width: 300px; }
}



/*  */


/*   */

.get-inspired {
  padding: 80px 8%;
  background-color: #fff;
  text-align: center;
}

.inspired-header h3 { color: #4B5320; font-size: 14px; letter-spacing: 2px; }
.inspired-header h2 { font-size: 28px; margin: 10px 0; }
.inspired-header p { max-width: 700px; margin: 0 auto 50px; color: #555; line-height: 1.6; }

/* Grid Layout */
.inspired-grid {
  display: flex;
  flex-direction: column;
  gap: 0; /* Removing gaps to match the tight look of the image */
  max-width: 1000px;
  margin: 0 auto;
}

.inspired-card {
  display: flex;
  min-height: 250px;
  text-align: left;
}

.flex-reverse { flex-direction: row-reverse; }

.card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

.large-img { flex: 1.5; } /* Makes the balloon image wider */

/* Background Colors */
.bg-olive { background-color: #4B5320; color: white; }
.bg-cream { background-color: #E5D3B3; color: #333; }
.bg-yellow { background-color: #FFB100; color: #333; }

/* Buttons & Text */
.card-content h4 { font-size: 18px; margin-bottom: 15px; }
.card-content p { font-size: 14px; margin-bottom: 20px; opacity: 0.9; }

.read-more-btn {
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Filter Tabs */
.filter-tabs {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tabs button {
  background: transparent;
  border: 1px solid #333;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.filter-tabs button:hover {
  background: #333;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .inspired-card, .flex-reverse {
    flex-direction: column;
  }
  .card-image { min-height: 200px; }
}



/*   */




/*        */

/* CTA GRID STYLES */
.cta-grid-section {
  width: 100%;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Columns */
  grid-template-rows: 350px 350px; /* Fixed height for boxes */
}

.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.center-content {
  text-align: center;
  align-items: center;
}

/* Background Colors & Images */
.bg-green { background-color: #4B5320; }
.bg-cream { background-color: #E5D3B3; }

.image-box {
  background-size: cover;
  background-position: center;
}

/* Typography */
.cta-box h3 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  max-width: 300px;
}

.cta-box .subtitle {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

/* Yellow Button */
.btn-yellow {
  background-color: #FFB100;
  color: #000;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  border-radius: 4px;
}

/* Expert Section (Bottom Right) */
.expert-content h4 {
  color: #4B5320;
  font-size: 22px;
  margin-bottom: 5px;
}

.expert-content p {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 25px;
}

.expert-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-circle {
  width: 100px;
  height: 100px;
  background-color: #FFB100; /* Yellow background behind photo */
  border-radius: 50%;
  overflow: hidden;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Phone Links */
.phone-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-link {
  background-color: #D9534F; /* Reddish-orange from image */
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.phone-link span { font-weight: normal; margin-left: 5px; }

.other-countries {
  font-size: 11px;
  color: #333;
  text-decoration: underline;
  margin-top: 5px;
}

/* Responsive: Stack on Mobile */
@media (max-width: 850px) {
  .cta-container {
    grid-template-columns: 1fr; /* Single column */
    grid-template-rows: auto;
  }
  .cta-box {
    min-height: 300px;
  }
  .expert-profile {
    flex-direction: column;
    text-align: center;
  }
}






/*     */

/* Small hero for inner pages */
.hero-small {
  height: 70vh;
}
.hero-small .hero-content h1 {
  font-size: 45px;
}
.hero-small .hero-content p {
  font-size: 18px;
}

/* Filter Buttons */
.filter-buttons {
  text-align: center;
  margin: 30px 0;
}
.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #ddd;
  color: #333;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: #E9C46A;
  color: #000;
}

/* Destinations grid (same as homepage) */
.destinations-page .destinations-grid {
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 8%;
}

.destinations-page{
     margin-top: 50px;
     margin-bottom: 50px;
}

/*      */



/* PACKAGES PAGE */
.packages-page {

  padding: 80px 8%;
  text-align: center;
  background: #f9f9f9;


}
.section-header {
 
  max-width: 700px;
  margin: 0 auto 50px;
    justify-content: center;
  align-items: center;
}
.packages-page .section-header h2 {
  font-size: 36px;
  
  text-align: center;
  margin-bottom: 10px;
}
.packages-page .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.package-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
  height: 10px;
  object-fit: cover;
}

.package-info {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
}
.package-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.package-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.package-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}
.package-info ul li {
  font-size: 14px;
  margin-bottom: 5px;
}
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.package-footer .price {
  font-weight: bold;
  color: #1F7A63;
}
.package-footer .btn-card {
  text-decoration: none;
  background: #E9C46A;
  color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.package-footer .btn-card:hover {
  background: #F4A261;
  color: #fff;
}



/*            */ 


/* CUSTOM TRIP FORM */
.custom-trip {
  padding: 80px 8%;
  background: #fff;
}
.custom-trip .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}
.custom-trip .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

.trip-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1F7A63;
  outline: none;
}

.trip-form button {
  align-self: flex-start;
  background: #1F7A63;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.trip-form button:hover {
  background: #159b85;
}




/* GUIDES PAGE */
.guides-page {
  padding: 80px 8%;
  background: #f9f9f9;
}
.guides-page .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}
.guides-page .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

/* Guides Grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.guide-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-5px);
}

.guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guide-info {
  padding: 20px;
  flex-grow: 1;
}

.guide-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.guide-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.guide-info .btn-card {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background: #E9C46A;
  color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.guide-info .btn-card:hover {
  background: #F4A261;
  color: #fff;
}




/* HOW IT WORKS */
.how-it-works {
  padding: 80px 8%;
  background: #f9f9f9;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.step-card:hover {
  transform: translateY(-5px);
}

.step-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #555;
}

/* Center CTA */
.cta-center {
  margin-top: 40px;
}
.cta-center .btn-main {
  text-decoration: none;
  background: #1F7A63;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-center .btn-main:hover {
  background: #159b85;
}




/* ABOUT STORY */
.about-story {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}
.story-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-top: 20px;
}

/* MISSION & VISION */
.mission-vision {
  display: flex;
  gap: 40px;
  padding: 60px 8%;
  flex-wrap: wrap;
  justify-content: center;
  background: #f9f9f9;
}
.mission-vision .mission,
.mission-vision .vision {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.mission-vision h3 {
  margin-bottom: 15px;
}

/* TEAM GRID */
.about-team {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.team-member p {
  font-size: 14px;
  color: #555;
}

/* CTA SECTION */
.about-cta {
  padding: 60px 8%;
  background: #1F7A63;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  margin: 40px 8%;
}
.about-cta .btn-main {
  text-decoration: none;
  background: #E9C46A;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}
.about-cta .btn-main:hover {
  background: #F4A261;
  color: #fff;
}




/* BLOG PAGE */
.blog-page {
  padding: 80px 8%;
  background: #f9f9f9;
  text-align: center;
}

.blog-page .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.blog-page .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
  flex-grow: 1;
}

.blog-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.blog-info .btn-card {
  display: inline-block;
  text-decoration: none;
  background: #E9C46A;
  color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.blog-info .btn-card:hover {
  background: #F4A261;
  color: #fff;
}




/* CONTACT PAGE */
.contact-page {
  padding: 80px 8%;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* CONTACT FORM */
.contact-form {
  flex: 1 1 400px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
}
.contact-form button.btn-main {
  background: #1F7A63;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button.btn-main:hover {
  background: #159b85;
}

/* CONTACT INFO */
.contact-info {
  flex: 1 1 300px;
  text-align: left;
}
.contact-info h3 {
  margin-bottom: 15px;
}
.contact-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.contact-info a {
  margin-right: 10px;
}

/*          */

.footer-social1 h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-social1 a {
  display: inline-block;
  margin-right: 10px;
  color: #000;
}
.footer-social1 img {
  width: 25px;
 /* filter: brightness(0) invert(1);*/
  transition: 0.3s;
  color: #000;
}
.footer-social1 a:hover img {
  filter: brightness(0) invert(0.75) sepia(1) saturate(5) hue-rotate(30deg);
}

/* MAP */
.map-container {
  margin-top: 50px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-container {
    flex-direction: column;
 

}
}



/*     intenary */

/*   */