/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; 
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}


















/*  button_1 design */
.custom-button {
    display: inline-block; /* Essential for padding on <a> tags */
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-button1 {
    background-color: #a0260d;
    color: #000000;
    border: 2px solid #ffffff;
}

.custom-button1:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: #a0260d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-button2 {
    background-color: #000000;
    border: 2px solid #eb9e02;
    color: #ffffff;
}

.custom-button2:hover {
    background: #eb9e02;
    color: #000000;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
}



.btn {
    margin-top: 10px;
}




















/* header-menu */
.ecotours_menu_header {
    background-color: #ffffff00;
    box-shadow: 0 2px 5px rgba(160, 38, 13, 0.2);
    position: relative;
    z-index: 100;
}

.ecotours_menu_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecotours_menu_logo {
    width: 200px;
    height: auto;
    display: block;
}

.ecotours_menu_nav_list {
    display: flex; 
    flex-grow: 1;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0 0 0 30px;
}

.ecotours_menu_nav_item {
    position: relative;
    padding: 0 15px;
}

.ecotours_menu_nav_link {
    text-decoration: none;
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.ecotours_menu_nav_link:hover {
    color: #eb9e02;
}

/* Dropdown Arrow */
.ecotours_menu_dropdown > .ecotours_menu_nav_link::after {
    content: '▼';
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.ecotours_menu_dropdown:hover > .ecotours_menu_nav_link::after {
    transform: rotate(180deg);
}

.ecotours_menu_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f5f5f5;
    border: 1px solid #a0260d;
    padding: 10px 0;
    display: none; 
    flex-direction: column;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.ecotours_menu_dropdown:hover .ecotours_menu_dropdown_menu {
    display: flex; 
}

.ecotours_menu_dropdown_link {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    padding: 8px 20px;
    display: block;
    transition: all 0.3s ease;
}

.ecotours_menu_dropdown_item:hover {
    background-color: #a0260d;
}

.ecotours_menu_dropdown_item:hover .ecotours_menu_dropdown_link {
    color: #ffffff;
}

/* --- Hamburger Icon --- */
.ecotours_menu_hamburger {
    display: none; 
    background: none; 
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.ecotours_menu_hamburger_line {
    width: 30px;
    height: 3px;
    background-color: #000000;
    transition: 0.3s;
}

/* Mobile States */
@media (max-width: 800px) {
    .ecotours_menu_hamburger { display: flex; }
    
    .ecotours_menu_nav_list {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background: #f5f5f5;
        flex-direction: column;
        padding: 20px;
        box-shadow: -5px 5px 10px rgba(0,0,0,0.1);
    }

    .ecotours_menu_nav_list.active { display: flex; }

    .ecotours_menu_nav_item {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .ecotours_menu_dropdown_menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #eee;
    }
}





































/* homepage */
/* landing section */
.eco_landing_hero {
    height: 550px;
    width: 100%;
    /* Ensure the background image is path-correct */
    background: url('img/1.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; /* Prevents unwanted scrollbars from animations */
}

.eco_landing_overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); 
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keeps content to the left */
    padding: 0 10%;
}

/* Text Styling */
.eco_landing_content {
    max-width: 650px;
    color: #ffffff;
    z-index: 2;
}

.eco_landing_title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.eco_landing_tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 500px;
}

/* Button Logic */
.eco_landing_cta_group {
    display: flex;
    gap: 15px;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .eco_landing_overlay {
        padding: 0 5%;
        justify-content: center; /* Center content on mobile for better UX */
        text-align: center;
    }
    
    .eco_landing_title { 
        font-size: 2.8rem; 
    }
    
    .eco_landing_cta_group { 
        flex-direction: column;
        width: 100%;
    }

}





















/* homepage */
/* about us preview */
.eco_landing_features {
    background-color: #F5F5F5; /* Matches the cream background in the image */
    padding: 80px 20px;
    width: 100%;
}

.eco_landing_features_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.eco_landing_feature_card {
    flex: 1;
    text-align: left;
}

/* Icon Circle Styling */
.eco_landing_feature_icon {
    width: 60px;
    height: 60px;
    background-color: #000000; /* Dark grey circle */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.eco_landing_feature_title {
    font-size: 1.5rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
}

.eco_landing_feature_text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 250px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .eco_landing_features_container {
        flex-wrap: wrap; /* Wraps icons into 2 rows on tablets */
    }
    .eco_landing_feature_card {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .eco_landing_features {
        padding: 50px 20px;
    }
    .eco_landing_feature_card {
        flex: 0 0 100%; /* Stacks vertically on phones */
        text-align: center;
    }
    .eco_landing_feature_icon {
        margin: 0 auto 20px auto;
    }
    .eco_landing_feature_text {
        max-width: 100%;
    }
}


  






















/* homepage */
/* destinations preview */
.eco_destinations_about {
    padding: 100px 5%;
    background-color: #ffffff;
    overflow: hidden;
}

.eco_destinations_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Overlap Logic */
.eco_destinations_image_wrapper {
    flex: 1;
    position: relative;
    padding-bottom: 150px; /* Space for the overlapping image */
}

.eco_destinations_img_large {
    width: 90%;
    border-radius: 20px;
    display: block;
}

.eco_destinations_img_small_frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 10px solid #ffffff; /* Creates the white border break seen in the image */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.eco_destinations_img_small {
    width: 100%;
    display: block;
}

/* Content Styling */
.eco_destinations_content {
    flex: 1;
}

.eco_destinations_badge {
    color: #2D3E50;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eco_destinations_title {
    font-size: 2.4rem;
    color: #1A2B3C;
    line-height: 1.2;
    margin-bottom: 25px;
}

.eco_destinations_description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* List Styling */
.eco_destinations_list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.eco_destinations_list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #1A2B3C;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eco_destinations_list li i {
    color: #c97201; /* Gold/Yellow checkmark */
}


/* Responsive Tablet/Mobile */
@media (max-width: 992px) {
    .eco_destinations_container {
        flex-direction: column;
        text-align: center;
    }
    
    .eco_destinations_image_wrapper {
        width: 100%;
        max-width: 500px;
        margin-bottom: 50px;
    }

    .eco_destinations_list {
        display: inline-block;
        text-align: left;
    }

    .eco_destinations_title {
        font-size: 2.2rem;
    }
}





















/* home page */
/* our services */
.eco_services_homepage_section {
    background-color: #F5F5F5;
    padding: 80px 5%;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Header */
.eco_services_homepage_header {
    margin-bottom: 50px;
}

.eco_services_homepage_badge {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1A2B3C;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.eco_services_homepage_title {
    font-size: 2.8rem;
    color: #1A2B3C;
    font-weight: 600;
    line-height: 1.2;
}

/* Grid / Container */
.eco_services_homepage_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Card */
.eco_services_homepage_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 30px 20px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.eco_services_homepage_card:hover {
    transform: translateY(-10px);
}

/* Icon */
.eco_services_homepage_icon {
    font-size: 24px;
    color: #1A2B3C;
    margin-bottom: 15px;
}

/* Text */
.eco_services_homepage_card_title {
    font-size: 1.25rem;
    color: #1A2B3C;
    font-weight: 700;
    margin-bottom: 10px;
}

.eco_services_homepage_card_text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Image */
.eco_services_homepage_image_box {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: auto;
}

.eco_services_homepage_image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.eco_services_homepage_footer {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .eco_services_homepage_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .eco_services_homepage_card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}









  






/* homepage */
/* partners */
.eco_partners_section {
    background-color: #ffffff;
    padding: 80px 5%;
}

.eco_partners_container {
    max-width: 1200px;
    margin: 0 auto;
}

.eco_partners_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.eco_partners_main_title {
    font-size: 2.2rem;
    color: #000000; /* Matching the orange/brown heading */
    font-weight: 600;
}

.eco_partners_link {
    color: #1A2B3C;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #eb9e02;
    padding-bottom: 5px;
}

.eco_partners_divider {
    border: none;
    border-top: 1px solid #ddd;
    margin-bottom: 60px;
}

.eco_partners_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    align-items: center;
    justify-items: center;
}

.eco_partners_logo_item img {
    max-width: 180px;
    height: auto;
    filter: grayscale(0); /* Optional: makes logos look unified */
    opacity: 0.8;
    transition: 0.3s;
}

.eco_partners_logo_item img:hover {
    filter: grayscale(1);
    opacity: 1;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .eco_partners_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eco_hero_btns {
        flex-direction: column;
    }
}





















/* homepage */
/* testimonial */
.eco_testimonials_projects {
    background-color: #f5f5f5; /* Matches the background in your images */
    padding: 60px 5%;
    text-align: center;
}

.eco_testimonials_header {
    margin-bottom: 40px;
}

.eco_testimonials_badge {
    color: #1A2B3C;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.eco_testimonials_main_title {
    font-size: 3rem;
    color: #1A2B3C;
    font-weight: 600;
}

/* Projects Grid */
.eco_testimonials_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.eco_testimonials_project_card {
    flex: 1;
    position: relative;
    height: 350px;
    border-radius: 30px; /* High rounding as seen in the screenshots */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

.eco_testimonials_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.eco_testimonials_project_card:hover .eco_testimonials_img {
    transform: scale(1.1);
}

/* Title Overlay for the center card */
.eco_testimonials_content_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Subtle dark tint */
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco_testimonials_project_title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}







/* inside text */
.eco_testimonials_card {
    background: rgba(235, 158, 2, 0.5);
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 350px;
}
.eco_testimonials_stars {
    color: #000000; /* Your brand gold */
    margin-bottom: 15px;
}
.eco_testimonials_quote {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
}
.eco_testimonials_name {
    font-weight: 600;
    color: #222;
}


/* Responsive */
@media (max-width: 992px) {
    .eco_testimonials_container {
        flex-direction: column;
        align-items: center;
    }
    .eco_testimonials_project_card {
        width: 100%;
        max-width: 500px;
    }
    .eco_testimonials_main_title {
        font-size: 2.2rem;
    }
}
























/* homepage */
/* call us */
.eco_call_us_section {
    position: relative;
    width: 100%;
    height:450px; /* Shorter than the hero section */
    background: url('img/8.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.eco_call_us_overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay for high contrast */
    display: flex;
    align-items: center;
}

.eco_call_us_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Aligns text to the right side like the image */
}

.eco_call_us_content {
    max-width: 600px;
    text-align: left;
    color: #ffffff;
}

.eco_call_us_title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.eco_call_us_tagline {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 24px;
    opacity: 0.95;
    max-width: 450px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .eco_call_us_title {
        font-size: 2.5rem;
    }
    .eco_call_us_container {
        justify-content: center; /* Centers text on smaller screens */
    }
    .eco_call_us_content {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .eco_call_us_section {
        height: 50vh;
    }
    .eco_call_us_title {
        font-size: 2rem;
    }
}











































/* about page */
/* story */
.eco_story_section {
    padding: 50px 5%;
    background-color: #ffffff; /* Clean white background as seen in design */
    font-family: 'Inter', sans-serif;
}

.eco_story_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start; /* Aligns content to the top */
    justify-content: space-between;
    gap: 60px;
}

/* Header Side */
.eco_story_header_block {
    flex: 1.2; /* Gives more weight to the heading */
}

.eco_story_badge {
    color: #1A2B3C;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.eco_story_main_title {
    font-size: 3.4rem; /* Large, bold typography */
    color: #1A2B3C;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

/* Text Side */
.eco_story_text_block {
    flex: 1;
    padding-top: 50px; /* Aligns paragraph with the middle of the title */
}

.eco_story_description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 500px;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .eco_story_container {
        flex-direction: column;
        gap: 30px;
    }
    
    .eco_story_main_title {
        font-size: 2.5rem;
    }

    .eco_story_text_block {
        padding-top: 0;
    }
}































/* about page */
/* our process */
.eco_process_section {
    background-color: #162B26; /* Dark background from image */
    padding: 70px 5%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.eco_process_header {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.eco_process_badge {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.eco_process_main_title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

/* Cards Container */
.eco_process_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.eco_process_card {
    background-color: #F9FBF9; /* Off-white card color */
    padding: 20px 10px;
    border-radius: 30px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.eco_process_card:hover {
    transform: translateY(-10px);
}

.eco_process_icon {
    font-size: 40px;
    color: #162B26;
    margin-bottom: 25px;
}

.eco_process_step_title {
    font-size: 2rem;
    color: #162B26;
    font-weight: 700;
    margin-bottom: 20px;
}

.eco_process_text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    max-width: 280px;
}

.eco_button {
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .eco_process_container {
        flex-direction: column;
        align-items: center;
    }
    
    .eco_process_card {
        width: 100%;
        max-width: 450px;
    }

    .eco_process_main_title {
        font-size: 2.5rem;
    }
}










  









/* about page */
/* mission */
.eco_mission_section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.eco_mission_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Styling */
.eco_mission_image_block {
    flex: 1;
}

.eco_mission_main_img {
    width: 100%;
    height: auto;
    border-radius: 40px; /* Matching the large rounded corners in the image */
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Content Styling */
.eco_mission_content_block {
    flex: 1;
}

.eco_mission_item {
    margin-bottom: 20px;
}

.eco_mission_badge {
    color: #1A2B3C;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.eco_mission_title {
    font-size: 2.8rem;
    color: #1A2B3C;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.0;
}

.eco_mission_description {
    font-size: 1.05rem;
    line-height: 1.4;
    color: #666;
    max-width: 550px;
}

.eco_mission_divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .eco_mission_container {
        flex-direction: column;
        gap: 50px;
    }
    
    .eco_mission_title {
        font-size: 2.2rem;
    }

    .eco_mission_image_block {
        width: 100%;
    }
}





















/* about page */
/* our partners */
.eco_tours_partner_section {
    padding: 80px 5%;
    background-color: #f5f5f5;
    overflow: hidden;
    text-align: center;
}

.eco_tours_partner_title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* The window must have a defined width to act as a frame */
.eco_tours_partner_slider_window {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; 
    position: relative;
}

.eco_tours_partner_track {
    display: flex;
    /* transition is handled by your working JS */
    width: 100%; 
}

.eco_tours_partner_item {
    /* This forces 3 items per view */
    flex: 0 0 33.3333%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box; /* Prevents padding from breaking the 33% width */
}

.eco_tours_partner_logo {
    max-width: 80%; /* Adjust based on your logo sizes */
    height: auto;
    object-fit: contain;
}

/* Mobile: Switch to 1 logo at a time if the screen is too small */
@media (max-width: 768px) {
    .eco_tours_partner_item {
        flex: 0 0 100%; 
    }
}






















/* contact page */
/* find us on google */
.eco_maps_section {
    padding: 60px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.eco_maps_header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.eco_maps_badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1A2B3C;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.eco_maps_main_title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1A2B3C;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.eco_maps_subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Layout Grid Container */
.eco_maps_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.eco_maps_visual {
    flex: 1;
    border-radius: 24px; /* Slightly tighter curves look better on mobile scales */
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.eco_maps_iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Form Window Styling */
.eco_maps_form_wrapper {
    flex: 1;
    background-color: #F5f5f5;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco_maps_form_title {
    font-size: 2.2rem;
    color: #1A2B3C;
    font-weight: 800;
    margin-bottom: 10px;
}

.eco_maps_form_text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

.eco_contact_form {
    width: 100%;
}

.eco_form_group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.eco_form_group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1A2B3C;
}

.eco_form_group input,
.eco_form_group select {
    padding: 12px 15px;
    border: 1px solid #eb9e02;
    border-radius: 8px;
    font-size: 15px;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.eco_form_group input:focus,
.eco_form_group select:focus {
    outline: none;
    border-color: #cf8801;
}

.eco_submit_btn {
    background: #eb9e02;
    color: #fff;
    border: none;
    padding: 14px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    transition: background 0.2s;
}

.eco_submit_btn:hover {
    background: #cf8801;
}


/* --- Tablet & Mobile Screen Breakpoints --- */
@media (max-width: 992px) {
    .eco_maps_container {
        flex-direction: column;
        gap: 25px;
    }
    
    .eco_maps_main_title {
        font-size: 2.5rem;
    }
    
    .eco_maps_visual {
        min-height: 400px; /* Gives the map proper breathing space when stacked */
    }
    
    .eco_maps_form_wrapper {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .eco_maps_section {
        padding: 40px 16px; /* Narrow gutters prevent layout compression on tiny phones */
    }

    .eco_maps_main_title {
        font-size: 2rem; /* Clean typography target for phone screens */
    }

    .eco_maps_subtitle {
        font-size: 1rem;
    }

    .eco_maps_visual {
        min-height: 300px; /* Perfect height scaling for portrait viewports */
        border-radius: 16px;
    }

    .eco_maps_form_wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .eco_maps_form_title {
        font-size: 1.75rem;
    }
}














/* contact page */
/* get in touch */
.eco_socials_section {
    padding: 100px 5%;
    background-color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

.eco_socials_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Title Block */
.eco_socials_title_block {
    flex: 1;
}

.eco_socials_main_title {
    font-size: 3rem;
    font-weight: 800;
    color: #1A2B3C;
    line-height: 1.2;
    margin-bottom: 20px;
}

.eco_socials_underline {
    width: 60px;
    height: 4px;
    background-color: #a0260d; /* Matching your brand green */
    border-radius: 2px;
}

/* Content Block */
.eco_socials_content_block {
    flex: 1.2;
}

.eco_socials_description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Social Icons */
.eco_socials_icon_wrapper {
    display: flex;
    gap: 15px;
}

.eco_socials_link {
    width: 45px;
    height: 45px;
    background-color: #eb9e02;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.eco_socials_link:hover {
    background-color: #55801C;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .eco_socials_container {
        flex-direction: column;
        gap: 40px;
    }
    
    .eco_socials_main_title {
        font-size: 2.5rem;
    }
    
    .eco_socials_content_block {
        width: 100%;
    }
}




















/* contact page */
/* our contacts */
.eco_contacts_section {
    padding: 80px 5%;
    background-color: #ffffff; /* Very light mint background */
    font-family: 'Inter', sans-serif;
}

.eco_contacts_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.eco_contacts_card {
    background-color: #f5f5f5;
    flex: 1;
    padding: 50px 40px;
    border-radius: 30px; /* High curvature as seen in image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.eco_contacts_card:hover {
    transform: translateY(-5px);
}

.eco_contacts_icon_box {
    width: 60px;
    height: 60px;
    background-color: #a0260d; /* Deep forest green accent */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.eco_contacts_title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 15px 0;
}

.eco_contacts_info {
    font-size: 1rem;
    color: #667070;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .eco_contacts_container {
        flex-direction: column;
        align-items: center;
    }
    
    .eco_contacts_card {
        width: 100%;
        max-width: 450px;
    }
}


















/* contact page */
/* faq */
.eco_faq_section {
    padding: 60px 5%;
    background-color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

.eco_faq_header {
    text-align: center;
    margin-bottom: 30px;
}

.eco_faq_main_title {
    font-family: 'Playfair Display', serif; /* Matching the serif font in the image */
    font-size: 3rem;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.eco_faq_leaf_icon {
    color: #eb9e02;
    font-size: 1.5rem;
}

.eco_faq_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.eco_faq_column {
    flex: 1;
}

.eco_faq_item {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
}

.eco_faq_question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.eco_faq_question:hover {
    color: #a0260d;
}

.eco_faq_arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #333;
}

/* Accordion Open State */
.eco_faq_item.active .eco_faq_arrow {
    transform: rotate(90deg);
}

.eco_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.eco_faq_answer p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .eco_faq_container {
        flex-direction: column;
    }
}













/* contact page */
/* contact us */
.eco_contacts_us_section {
    padding: 60px 5%;
    /* Update these lines */
    background-image:  url('img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Use 'fixed' for a parallax effect */
    
    font-family: 'Inter', sans-serif;
}

.eco_contacts_us_card {
    background-color: rgba(17, 17, 17, 0.85); 
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 40px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Badge Styling */
.eco_contacts_us_badge {
    border: 1px solid #333;
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.eco_contacts_us_dot {
    width: 8px;
    height: 8px;
    background-color: #eb9e02; 
    border-radius: 50%;
}

/* Title Styling */
.eco_contacts_us_title {
    color: #ffffff;
    font-size: 4.5rem; 
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 50px 0;
    letter-spacing: -2px;
}

/* Email Styling */
.eco_contacts_us_footer {
    display: inline-block;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

.eco_contacts_us_email {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.eco_contacts_us_email:hover {
    color: #a0260d;
}

.eco_contacts_us_arrow {
    font-size: 2rem;
    color: #ffffff;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .eco_contacts_us_title {
        font-size: 3rem;
    }
    
    .eco_contacts_us_email {
        font-size: 1.5rem;
    }
    
    .eco_contacts_us_card {
        padding: 60px 20px;
    }
}

























/* our services page */
/* all services */
.ecotours_services_section {
    padding: 80px 5%;
    background-color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Header */
.ecotours_services_header {
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.ecotours_services_badge {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1A2B3C;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ecotours_services_main_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1A2B3C;
    margin-bottom: 15px;
}

.ecotours_services_subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Grid */
.ecotours_services_grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 25px;
}

/* Center the last (odd) card */
.ecotours_services_grid .ecotours_services_card:last-child {
    grid-column: 1 / -1;   /* span full width */
    max-width: 1000px;     /* match header width */
    margin: 0 auto;        /* center it */
}

/* Card */
.ecotours_services_card {
    display: flex;
    flex-direction: column;
}

/* Image */
.ecotours_services_image_wrap {
    width: 100%;
    height: 280px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: -60px;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ecotours_services_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ecotours_services_card:hover .ecotours_services_img {
    transform: scale(1.05);
}

/* Content */
.ecotours_services_content {
    background: #ffffff;
    padding: 80px 30px 20px;
    border-radius: 25px;
    z-index: 1;
    text-align: left;
}

.ecotours_services_icon {
    font-size: 1.5rem;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.ecotours_services_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.ecotours_services_text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Buttons */
.ecotours_landings_cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .ecotours_services_grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .ecotours_services_main_title {
        font-size: 2.3rem;
    }
}


















/* Up-Coming Events page */
/* menu overlay */
.ecotours_hero_section {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust height as needed */
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.6)), 
                url('img/29.jpg') no-repeat center center/cover;
                
    border-radius: 0px 0px 150px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Navbar Styling */
.ecotours_nav {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
}


/* Hero Text Content */
.ecotours_hero_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 20px 20px;
}

.ecotours_hero_badge{
    margin-top: 20px;
    margin-bottom: 10px;
}


.ecotours_hero_title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ecotours_hero_subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #efefef;
    padding-bottom: 50px;
}

/* Customize Button (Right Side) */
.ecotours_customize_float {
    position: absolute;
    right: 0;
    top: 55%;
    background: #fff;
    color: #333;
    padding: 12px 20px;
    border-radius: 5px 0 0 5px;
    font-weight: 600;
    box-shadow: -2px 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .ecotours_nav_links { display: none; }
    .ecotours_hero_title { font-size: 2.5rem; }
}




























/* footer */
.eco_footer_section {
    background-color: #FDF8ED; /* Cream background from screenshot */
    padding: 80px 0 20px;
    font-family: 'Inter', sans-serif;
    color: #1A2B3C;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.eco_footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5%;
}

.eco_footer_column {
    flex: 1;
}

.eco_footer_logo {
    width: 150px;
    margin-bottom: 20px;
}

.eco_footer_about_text {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #555;
}

.eco_footer_widget_title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.eco_footer_links {
    list-style: none;
    padding: 0;
}

.eco_footer_links li {
    margin-bottom: 12px;
}

.eco_footer_links a {
    text-decoration: none;
    color: #1A2B3C;
    transition: color 0.3s;
}

.eco_footer_links a:hover {
    color: #E6D166;
}

.eco_footer_info {
    margin-bottom: 20px;
    line-height: 1.5;
}

.eco_footer_phone a {
    text-decoration: none;
    color: #1A2B3C;
    font-weight: 450;
}

.eco_footer_bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    font-size: 0.9rem;
}

.eco_footer_designer a {
    color: #a0260d;
    text-decoration: none;
}

.eco_footer_designer a:hover {
    color: #c97201; /* optional hover effect */
}


/* Floating Button Styling */
.eco_footer_scroll_btn {
    display: none; /* Hidden by default, shown via JS */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #E6D166;
    color: white;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 5px; /* Matches the square-ish look in image */
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.eco_footer_scroll_btn:hover {
    background-color: #1A2B3C;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .eco_footer_container {
        flex-direction: column;
        text-align: center;
    }
}





















/* upcoming Events page  */
/* upcoming Events  */
.ecotours_events_container {
    display: flex;
    max-width: 1250px;
    margin: 50px auto;
    padding: 20px;
    gap: 40px;
    font-family: 'Inter', sans-serif;
}

.eco_categories {
    display: inline-block;      
    font-size: 22px;            
    font-weight: 650;          
    padding-bottom: 10px;       
    text-decoration: none;      
    color: #333;         
    transition: color 0.3s ease; 
}

.ecotours_events_categories {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.ecotours_events_categories li {
    margin-bottom: 12px;
}

.ecotours_events_categories a {
    text-decoration: none;
    color: #88a48e; /* Nature-themed green */
    font-weight: 500;
}

.ecotours_events_categories a.active {
    color: #4a5d4e;
    text-decoration: underline;
}

/* Header & Meta */
.ecotours_events_main { flex-grow: 1; }

.ecotours_events_title {
    font-size: 3rem;
    color: #a0260d; /* The green from your "Shop" image */
    margin-bottom: 20px;
    padding-left: 50px;
}

.no-results{
    padding-left: 60px;
}

.ecotours_events_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 30px;
    color: #666;
    font-size: 0.9rem;
}

.ecotours_events_sort {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

/* Grid & Cards */
.ecotours_events_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ecotours_events_card {
    text-align: center;
}

.ecotours_events_card_img {
    position: relative;
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.ecotours_events_card_img img {
    width: 100%;
    height: auto;
}

.ecotours_events_badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8db061;
    color: white;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.ecotours_events_cat {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
}

.ecotours_events_info h4 {
    margin: 5px 0;
    font-size: 1.1rem;
    color: #333;
}

.ecotours_events_price {
    font-weight: bold;
    color: #333;
}

.ecotours_events_price del {
    color: #aaa;
    font-weight: normal;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .ecotours_events_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ecotours_events_container { flex-direction: column; }
    .ecotours_events_grid { grid-template-columns: 1fr; }
}


























/* upcoming Events page  */
/* upcoming Events  */