* 

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #F4E9DA; 
    color: #2B2B2B; 
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
  background-color: #FFF9ED;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #1f5e3b;
}
@media (max-width: 768px) {
  .nav-btn:not(.mobile-quote) {
    display: none;
  }}

/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* 🔽 Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    text-align: right;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0; /* reduces top/bottom padding */
  }

 .nav-links.active {
    display: flex;
  }
  .nav-links li {
  padding: 15px 20px;
}
 .nav-links li {
    padding: 8px 15px; /* reduced from 15px 20px */
  }

  .nav-links li a {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
  }

  .nav-links li a:hover {
    background-color: #f4f4f4;
    color: #1f5e3b;
  }

  /* Keep desktop quote button hidden, mobile one visible */
 

  .mobile-quote {
    display: block;
    text-align: center;
    margin: 8px 15px;
    padding: 8px 12px;
    background-color: #1f5e3b;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .mobile-quote:hover {
    background-color: #15522e;
  }
}

  


.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F5E3B;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}


.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2B2B2B;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1F5E3B;
}
.mobile-quote {
    display: block;
    text-align: center;
    margin: 8px 15px;
    padding: 8px 12px;
    background-color: #1f5e3b;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .mobile-quote:hover {
    background-color: #15522e;
  }


.nav-btn {
    background: #1F5E3B; /* Forest Green */
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(31, 94, 59, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: #164a2e;
    box-shadow: 0 6px 20px rgba(31, 94, 59, 0.4);
}
/* Hide nav-btn on mobile devices */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent; /* Ensure border is consistent */
}

.btn-primary {
    background: #1F5E3B; /* Forest Green */
    color: white;
}

.btn-secondary {
    background: #E27A27; /* Sunset Orange */
    color: white;
}

.btn-primary:hover {
    background: #15462A;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: #CA6923;
    transform: translateY(-2px);
}

/* Page Layout for new HTML files */
.page-container {
    padding-top: 120px; /* Space for the fixed nav bar */
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-header {
    margin-bottom: 40px;
    padding: 0 5%;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #1F5E3B;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
}

.form-section, .payment-section, .resource-hub {
    padding: 20px;
}




#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: blur(3px) brightness(0.7);
    transition: filter 0.5s ease;
    cursor: pointer;
}

#bg-video.clear {
    filter: blur(0) brightness(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 94, 59, 0.7) 0%, rgba(226, 122, 39, 0.4) 100%);
    transition: opacity 0.5s;
}

#bg-video.clear + .hero-overlay {
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: opacity 0.5s;
}

#bg-video.clear ~ .hero-content {
    opacity: 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #1F5E3B; /* Forest Green */
    color: white;
    box-shadow: 0 10px 30px rgba(31, 94, 59, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 94, 59, 0.6);
    background: #164a2e;
}

.btn-secondary {
    background: rgba(226, 122, 39, 0.9); /* Savanna Orange */
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #E27A27;
    transform: translateY(-3px);
}


/* Section Styling */
section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #E27A27; /* Savanna Orange */
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1F5E3B;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tour Categories */
.categories-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    perspective: 1000px;
    scrollbar-width: none;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    position: relative;
    min-width: 240px;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    /*transform: scale(0.85) rotateY(-15deg);*/
    /*opacity: 0.7;*/
    flex-shrink: 0;
}

.category-card.center {
    transform: scale(1) rotateY(0deg);
    opacity: 1;
    box-shadow: 0 20px 50px rgba(31, 94, 59, 0.3);
}

/*.category-card:hover {*/
/*    transform: scale(1.05) rotateY(0deg) !important;*/
/*    opacity: 1 !important;*/
/*}*/

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(31, 94, 59, 0.95), transparent);
    color: white;
}

.category-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Top Destinations */
.destinations-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.destinations-showcase {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    perspective: 1200px;
    scrollbar-width: none;
}

.destinations-showcase::-webkit-scrollbar {
    display: none;
}

.destination-large {
    position: relative;
    min-width: 300px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s ease;
    /*transform: scale(0.8) rotateY(-20deg);*/
    /*opacity: 0.6;*/
    flex-shrink: 0;
}

.destination-large.center {
    transform: scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 25px 60px rgba(31, 94, 59, 0.4);
}

.destination-large:hover {
    transform: scale(1.05) rotateY(0deg) !important;
    opacity: 1 !important;
}

.destination-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-large:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(31, 94, 59, 0.95), transparent);
    color: white;
    transform: translateY(0);
}


.destination-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.destination-info p {
    margin-bottom: 15px;
    opacity: 0.95;
}

.destination-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}
/* Styling for the Read More button/link */
.read-more-btn {
    display: inline-block;
    color: #1f5e3b; /* A dark green color */
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    margin-top: 10px;
    cursor: pointer;
}

/* Initially hide the content */
.hidden-content {
    display: none;
    opacity: 0;
    /* Adding a transition for a smoother opening effect */
    transition: opacity 0.5s ease; 
}

/* Class added by JavaScript to show the content */
.hidden-content.show {
    display: block;
    opacity: 1;
}



/* Scroll Arrows for Horizontal Scrolling */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 94, 59, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.scroll-arrow:hover {
    background: rgba(31, 94, 59, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.scroll-arrow-left {
    left: -25px;
}

.scroll-arrow-right {
    right: -25px;
}

.scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Adjust container overflow to show arrows outside */
.categories-container,
.destinations-container,
.tours-container {
    overflow: visible;
    position: relative;
}

/* Hide arrows on small screens or adjust positioning */
@media (max-width: 768px) {
    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .scroll-arrow-left {
        left: 5px;
    }
    
    .scroll-arrow-right {
        right: 5px;
    }
}

/* Plan Your Trip */
.plan-section {
    background: linear-gradient(135deg, #F4E9DA 0%, #e8dcc8 100%);
}

.plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.plan-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.plan-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatAnimation 3s ease-in-out infinite;
}

.plan-img:nth-child(2) {
    animation-delay: 1s;
}

.plan-img:nth-child(3) {
    animation-delay: 2s;
}

.plan-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plan-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1F5E3B;
    line-height: 1.2;
}

.plan-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F5E3B, #E27A27);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Popular Tours */
.tours-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tours-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.tours-grid::-webkit-scrollbar {
    display: none;
}

.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: slideInUp 0.8s ease forwards;
    opacity: 0;
    border: 2px solid #F4E9DA;
    min-width: 280px;
    flex-shrink: 0;
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 94, 59, 0.2);
    border-color: #1F5E3B;
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    cursor: pointer;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E27A27;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-details {
    padding: 20px;
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2B2B2B;
    font-weight: 600;
}

.tour-location {
    color: #1F5E3B;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #F4E9DA;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F5E3B;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.gallery-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 0 5px;
}
.gallery-image {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px; /* space between image + text */
}


.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(31, 94, 59, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Statistics */
.stats-section {
    background: linear-gradient(135deg, #1F5E3B, #E27A27);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Tour Guides */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid #F4E9DA;
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: #1F5E3B;
}

.guide-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Makes the container circular */
    margin: 0 auto 20px;
    
    /* Crucial: Hides anything (like the edges of the square image) that extends outside the circular border */
    overflow: hidden; 
    
    /* Remove old gradient/text styles */
    /* background: linear-gradient(135deg, #1F5E3B, #E27A27); */
    /* display: flex; align-items: center; justify-content: center; */
}

/* NEW: Styles for the image inside the container */
.guide-avatar img {
    display: block; /* Ensures the image behaves predictably */
    width: 100%;    /* Forces the image to fill the 120px width of its parent */
    height: 100%;   /* Forces the image to fill the 120px height of its parent */
    
    /* Ensures the image covers the entire area without stretching, like 'background-size: cover;' */
    object-fit: cover; 
}
.guide-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2B2B2B;
    font-weight: 600;
}

.guide-title {
    color: #E27A27;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.guide-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    background: #F4E9DA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8dcc8;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F5E3B, #E27A27);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    color: #2B2B2B;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #F4E9DA, #e8dcc8);
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #1F5E3B;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: #E27A27;
}

.newsletter-btn {
    background: #1F5E3B;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    background: #164a2e;
}
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}


/* Footer */
footer {
    background: #2B2B2B;
    color: white;
    padding: 40px 3% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #E27A27;
    font-family: 'Cormorant Garamond', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #F4E9DA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1F5E3B;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #F4E9DA;
}

.close-video {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 1001;
    background: rgba(226, 122, 39, 0.95);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    font-weight: 600;
}

.close-video.show {
    opacity: 1;
    pointer-events: all;
}

.close-video:hover {
    background: #E27A27;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .search-container {
        grid-template-columns: 1fr;
    }

    .plan-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .plan-text h2 {
        font-size: 2rem;
    }

    .category-card {
        min-width: 250px;
        height: 300px;
    }

    .destination-large {
        min-width: 320px;
        height: 400px;
    }
    @keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
}
.map-section {
    padding: 0px 0;
    background-color: #F4E9DA; /* Light gray background to separate it visually */
    text-align: center;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.map-section .section-title {
    color: #1F5E3B; /* Forest Green */
    margin-bottom: 30px;
    
    animation: slideInUp 1s ease-out both;
    animation-play-state: paused;
    
    font-size: clamp(2rem, 4vw, 3rem);

    
    font-weight: 700;
}

.map-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    /* Ensures the iframe takes up the full space of its container */
    display: block; 
    width: 100%;
    height: 430px;
}
.plan-images {
    opacity: 0;
    animation: slideInFromLeft 1s ease-out forwards;
}

.plan-text {
    opacity: 0;
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Intersection Observer trigger for scroll-based animation */
.plan-images.animate,
.plan-text.animate {
    animation-play-state: running;
}

/* Individual image stagger animation */
.plan-img:nth-child(1) {
    animation-delay: 0.2s;
}

.plan-img:nth-child(2) {
    animation-delay: 0.4s;
}

.plan-img:nth-child(3) {
    animation-delay: 0.6s;
}

.plan-img:nth-child(4) {
    animation-delay: 0.8s;
}

/* Plan section improvements */
.plan-section {
    overflow: hidden;
}

.plan-features .feature-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.plan-features .feature-item:nth-child(1) {
    animation-delay: 1s;
}

.plan-features .feature-item:nth-child(2) {
    animation-delay: 1.2s;
}

.plan-features .feature-item:nth-child(3) {
    animation-delay: 1.4s;
}
 .resource-grid {
            max-width: 1200px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .resource-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 3px solid #F4E9DA;
            transition: all 0.3s;
            text-align: center;
        }

        .resource-card:hover {
            transform: translateY(-10px);
            border-color: #1F5E3B;
            box-shadow: 0 15px 40px rgba(31, 94, 59, 0.2);
        }

        .resource-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #1F5E3B, #E27A27);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .resource-card h3 {
            color: #1F5E3B;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .resource-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .resource-list {
            text-align: left;
            margin: 20px 0;
            padding-left: 20px;
        }

        .resource-list li {
            margin-bottom: 10px;
            color: #555;
            position: relative;
        }

        .resource-list li:before {
            content: "✓";
            color: #1F5E3B;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }

        .expand-btn {
            background: #E27A27;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .expand-btn:hover {
            background: #1F5E3B;
            transform: scale(1.05);
        }

        

        @media (max-width: 768px) {
            .resource-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 30px 20px;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Add this CSS to your styles.css file */

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: block;
}

/* Modal Content */
.modal-content {
    background-color: #F4E9DA;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

/* Modal Header */
.modal-header {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #1F5E3B, #E27A27);
    color: white;
    border-radius: 25px 25px 0 0;
}

.modal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Close Button */
.modal-close {
    color: white;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Form Container inside Modal */
.modal .quote-form-container {
    max-width: 100%;
    margin: 0;
    background: #F4E9DA;
    padding: 40px;
    border-radius: 0 0 25px 25px;
    box-shadow: none;
    border: none;
}

/* Form Styling */
.form-step {
    margin-bottom: 35px;
}

.form-step h3 {
    color: #1F5E3B;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1F5E3B, #E27A27);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2B2B2B;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: #E27A27;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1F5E3B;
    box-shadow: 0 0 0 3px rgba(31, 94, 59, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.checkbox-item:hover {
    border-color: #1F5E3B;
    background: #f9f9f9;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1F5E3B;
}

.checkbox-item label {
    cursor: pointer;
    font-weight: 500;
}

.budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.budget-option {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.budget-option:hover,
.budget-option.selected {
    border-color: #1F5E3B;
    background: rgba(31, 94, 59, 0.05);
}

.budget-option input[type="radio"] {
    display: none;
}

.submit-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #1F5E3B, #E27A27);
    color: white;
    border: none;
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(31, 94, 59, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 94, 59, 0.5);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal .quote-form-container {
        padding: 30px 20px;
    }

    .modal-header {
        padding: 30px 20px 20px;
    }

    .modal-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
    .filter-group, .destination-filter-group {
    flex: none !important;
    min-width: fit-content !important;
}
.section-header {
    text-align: center;
    margin-bottom: 20px;
}
.destinations-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.destination-large {
    position: relative;
    min-width: auto !important;
    height: auto;
}
.destinations-showcase {
    display: flex;
    gap: 30px;
    overflow-x: unset !important;
    scroll-behavior: unset !important;
    padding: 20px 0;
    perspective: unset !important;
    scrollbar-width: none;
    width: 100%;
}
.tours-title {
    font-size: 2rem;
    margin-bottom: 3px;
}
.tour-card {
    min-width: auto !important;
}
.tours-section {
    padding: 0px !important;
}
.tours-title {
    margin-bottom: 0px !important;
}
}

.tour-rating {
    color: #1f5e3b;
}
@media (max-width: 480px){
.tours-container, #tours .tours-container  {
    padding: 0 30px;
}
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Ensure the title animation is observed and played */
.map-section .section-title[style*="animation-play-state: running"] {
    animation-play-state: running;
}

@media (max-width: 991px) {
  section {
    padding: 10px 20px;
}
    .tours-section {
    max-width: 100% !important;
    margin: 60px auto 0 !important;
    padding: 10px !important;
}
}
.dropdown-menu li a:hover {
    background: rgb(255 110 52) !important;
    color: white;
}
