/* ===================================================== */
/* FONTS */
/* ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");


/* ===================================================== */
/* RESET & BASE */
/* ===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #0f172a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
picture,
video {
    max-width: 100%;
    display: block;
}

html,
body {
    overflow-x: hidden;
}

/* ===================================================== */
/* TYPOGRAPHY */
/* ===================================================== */

a {
    text-decoration: none;
    color: inherit;
    color: #9ca44a;
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #020617;

}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.05rem);
    font-family: "Georgia", serif;
}

h3 {
    font-size: 1.75rem;
    font-family: "Georgia", serif;
}

h4 {
    font-size: 1.4rem;
    font-family: "Georgia", serif;
}

h5 {
    font-size: 1.15rem;
    font-family: "Georgia", serif;
}

h6 {
    font-size: 1rem;
    font-family: "Georgia", serif;
}

ul {
    list-style-type: disc;
}

ul ul {
    list-style-type: circle;
}

ul ul ul {
    list-style-type: square;
}

.FAQ_item h2 {
    font-size: 1.4rem;
}

.FAQ_item h3 {
    font-size: 1.2rem;
}

.FAQ_item h4 {
    font-size: 1.1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    /* color: #334155; */
}

.paatagonia-text-muted {
    color: #64748b;
}

.pataagonia-text-center {
    text-align: center;
}

.pro_tips {
    background: #9ca44a;
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* =============================================== */
/* Global ReadMore or ReadLess  */
/* =============================================== */

.inner_readmore {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.inner_readmore.expanded {
    max-height: fit-content;
}

.inner_expand_btn {
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    border: none;
    background: #9ca44a;
    font-weight: bold;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.inner_expand_btn:hover {
    background-color: #b3ba63;
}


/* =============================================== */
/* Global Tooltips  */
/* =============================================== */

#global_tooltip {
    max-width: 15%;
    width: fit-content;
    position: fixed;
    /* border-color: #92984A;
            background: #eef0d8;
            color: #000; */
    background: #9ca44a;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s ease;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

#global_tooltip::after {
    content: "";
    position: absolute;
    top: -10.5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #9ca44a transparent;
}

/* ===================================================== */
/* TABLE */
/* ===================================================== */

.diff_table {
    width: 100% !important;
    border-collapse: collapse;
}

/* ===================================================== */
/* TABLE HEADER */
/* ===================================================== */

.diff_table thead tr {
    background: rgba(255, 255, 255, 0.05);
}

.diff_table th {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 18px 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.35);
    vertical-align: top;
    white-space: nowrap;
}

/* ===================================================== */
/* TABLE BODY */
/* ===================================================== */

.diff_table td {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    vertical-align: top;
}

/* ===================================================== */
/* STRONG TAG */
/* ===================================================== */

.diff_table td strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===================================================== */
/* TABLE ROW HOVER */
/* ===================================================== */

.diff_table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* ===================================================== */
/* TABLE PARAGRAPH */
/* ===================================================== */

.diff_table p {
    margin: 0;
    color: #ffffff;
}

/* ===================================================== */
/* TABLE LINKS */
/* ===================================================== */

.diff_table a {
    color: #9ca44a;
}


.table_wrapper_diff {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
    scrollbar-color: #a5a642 #e5e5e5;
}

.table_wrapper_diff::-webkit-scrollbar {
    height: 12px;
}

.table_wrapper_diff::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 20px;
}

.table_wrapper_diff::-webkit-scrollbar-thumb {
    background: #a5a642;
    border-radius: 20px;
    border: 2px solid #e5e5e5;
}

.table_wrapper_diff::-webkit-scrollbar-thumb:hover {
    background: #8f9035;
}

/* ===================================================== */
/* TABLE MOBILE */
/* ===================================================== */

@media(max-width:1024px) {

    .diff_table {
        min-width: 850px;
    }

    .diff_table th {
        font-size: 18px;
        padding: 16px 14px;
    }

    .diff_table td {
        font-size: 16px;
        padding: 16px 14px;
    }
}

/* ===================================================== */
/* TABLE TABLET */
/* ===================================================== */

@media(max-width:768px) {

    .table_wrapper_diff {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .diff_table {
        min-width: 700px;
    }

    .diff_table th {
        font-size: 16px;
        padding: 14px 12px;
    }

    .diff_table td {
        font-size: 15px;
        line-height: 1.6;
        padding: 14px 12px;
    }

    .table_wrapper_diff::-webkit-scrollbar {
        height: 6px;
    }
}

/* ===================================================== */
/* TABLE MOBILE SMALL */
/* ===================================================== */

@media(max-width:480px) {

    .diff_table {
        min-width: 650px;
    }

    .diff_table th {
        font-size: 15px;
        padding: 12px 10px;
    }

    .diff_table td {
        font-size: 14px;
        line-height: 1.5;
        padding: 12px 10px;
    }

    .table_wrapper_diff {
        border-radius: 10px;
    }
}


/* =============================================== */
/* Main Patagonia  */
/* =============================================== */

.project_container {
    width: 90%;
    padding: 0 1.25rem;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .project_container {
        width: 90%;
        padding: 0 0;
        margin: 0 auto;
    }
}

.project_section {
    padding-block: 2.5rem;
}

.project_grid {
    display: grid;
    gap: 2rem;
}

.project_grid_2 {
    grid-template-columns: repeat(2, 1fr);
}

.project_grid_3 {
    grid-template-columns: repeat(3, 1fr);
}

.project_grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .project_grid_2,
    .project_grid_3,
    .project_grid_4 {
        grid-template-columns: 1fr;
    }
}

.project_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 15px
}

.project_title {
    width: 100%;
    color: #9ca44a;
    font-weight: 500;
    text-align: center;
}

.project_title_head {
    color: #fff;
    text-align: left;
}

.project_p {
    text-align: center;
}

.project_p p {
    color: #000000;
    margin-bottom: 0;
}

@media (max-width:1024px) {

    .project_title {
        font-size: 2rem;
    }
}

@media (max-width:768px) {

    .project_title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
}

@media (max-width:480px) {

    .project_title {
        font-size: 1.5rem;
    }
}

/* =============================================== */
/* Patagonia Read More  */
/* =============================================== */

.project_readmore_wrap {
    display: block;
    width: 100%;
}

.project_readmore {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
}

.project_readmore_btn {
    display: inline-flex;
    margin-left: 6px;
    background: none;
    border: none;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #9ca44a;
    cursor: pointer;
    opacity: 0.9;
    text-decoration: underline;
    align-items: center;
}

.project_readmore_btn_diff {
    margin-left: 0px;
    margin-bottom: 15px;
}

.project_readmore_btn:hover {
    opacity: 1;
}

.project_readmore_btn i {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 6px;
}

.project_readmore_btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.project_readmore[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.project_readmore ul,
ol {
    padding-left: 20px;
    text-align: left;
}

.project_readmore li {
    margin-bottom: 8px;
}

/* ===================================================== */
/* Header and Menubar SECTION */
/* ===================================================== */

.mobile_top_bar,
.mobile_header_shell,
.mobile_menu_panel {
    display: none;
}

.project_header_main {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    position: relative;
    z-index: 50;
}

.header_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_logo img {
    height: 80px;
    object-fit: contain;
    display: block;
}

.header_nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.header_btn {
    background: #9ca44a;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 0 #cfd3a5;
    animation: wt4-pulse 2s infinite;
    white-space: nowrap;
}

@keyframes wt4-pulse {
    0% {
        box-shadow: 0 6px 0 #cfd3a5, 0 0 0 0 rgba(156, 164, 74, .5);
    }

    70% {
        box-shadow: 0 6px 0 #cfd3a5, 0 0 0 12px rgba(156, 164, 74, 0);
    }

    100% {
        box-shadow: 0 6px 0 #cfd3a5, 0 0 0 0 rgba(156, 164, 74, 0);
    }
}

.header_contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    color: #9ca44a;
}

.header_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_item i {
    font-size: 18px;
    color: #000;
}

.header_item span {
    font-size: 17px;
    line-height: 1.35;
    color: #9ca44a;
    max-width: 220px;
}

.menu_bar_section {
    background: #fff;
    /* border-bottom: 4px solid #9ca44a; */
    position: relative;
    z-index: 40;
}

.menu_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.desktop_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 70px;
}

.desktop_menu>li {
    position: static;
}

.desktop_menu>li>a,
.desktop_menu>li>button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 24px 18px;
    font-size: 16px;
    font-weight: 500;
    color: #18300f;
    text-transform: uppercase;
    white-space: nowrap;
}

.desktop_menu>li:hover>a,
.desktop_menu>li:hover>button {
    color: #9ca44a;
}

.desktop_menu>li>button i {
    font-size: 16px;
    transition: .25s;
}

.desktop_menu>li:hover>button i {
    transform: rotate(180deg);
}

.mega_menu {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: min(1125px, calc(100vw - 40px));
    background: #fff;
    border-top: 4px solid #9ca44a;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    padding: 26px 0 46px;
    display: none;
    grid-template-columns: 1.35fr 1.35fr 1.35fr 1.35fr;
    gap: 50px;
    z-index: 200;
    margin-top: -4px;
}

.desktop_menu>li:hover .mega_menu {
    display: grid;
}

.mega_col h3 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.1;
    color: #18300f;
    font-weight: 800;
    border-bottom: 1px solid #ececec;
    padding: 0 20px;
    padding-bottom: 12px;
}

.mega_col a {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    color: #18300f;
    padding: 20px;
}

.mega_col a:hover {
    background: linear-gradient(90deg, rgba(156, 164, 74, .75), rgba(207, 211, 165, .85));
    color: #fff !important;
}

@media(max-width:991px) {

    .project_header_main,
    .menu_bar_section {
        display: none;
    }

    .mobile_top_bar {
        display: grid;
        grid-template-columns: 1fr repeat(3, 70px);
        align-items: center;
        padding: 10px 34px;
        background: #fff;
        border-bottom: 2px solid #111;
        /* gap: 18px; */
    }

    .mobile_top_icon {
        display: flex;
        align-items: center;
        color: #000;
        font-size: 25px;
        padding: 10px;
        font-weight: 900;
    }

    .mobile_top_icon.circle {
        border: 2px solid #000;
        justify-content: center;
        border-radius: 100%;
        width: 45px;
        font-size: 20px;
    }

    .mobile_header_shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 150px;
        padding: 0 52px;
        background: #fff;
    }

    .mobile_logo img {
        width: 165px;
        height: auto;
        display: block;
    }

    .mobile_menu_toggle {
        border: 0;
        background: #18300f;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    .mobile_menu_toggle .ri-close-line {
        display: none;
    }

    body.menu_open .mobile_menu_toggle .ri-menu-line {
        display: none;
    }

    body.menu_open .mobile_menu_toggle .ri-close-line {
        display: block;
    }

    .mobile_menu_panel {
        display: block;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    body.menu_open .mobile_menu_panel {
        max-height: 900px;
    }

    .mobile_menu_list {
        list-style: none;
        padding: 20px 30px;
        margin: 0;
    }

    .mobile_menu_item {
        border-bottom: 1px solid #efefef
    }

    .mobile_menu_link {
        width: 100%;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        padding: 31px 28px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        color: #000;
        text-transform: uppercase;
        cursor: pointer;
        text-align: left;
    }

    .mobile_menu_link i {
        font-size: 24px;
        transition: .25s;
    }

    .mobile_menu_item.open .mobile_menu_link i {
        transform: rotate(180deg);
    }

    .mobile_submenu {
        display: none;
        padding: 0 28px 24px 48px;
    }

    .mobile_menu_item.open .mobile_submenu {
        display: block;
    }

    .mobile_submenu a {
        display: block;
        color: #18300f;
        font-size: 15px;
        line-height: 1.35;
        padding: 11px 0;
    }

    .mobile_nested_submenu {
        display: none;
        padding-left: 18px;
    }

    .mobile_submenu_item.active .mobile_nested_submenu {
        display: block;
    }

    .mobile_nested_btn {
        /* width: 100%; */
        background: none;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 12px 0;
        cursor: pointer;
    }

    .mobile_nested_btn i {
        font-size: 24px;
        transition: transform 0.3s ease;
    }

    .mobile_nested_btn.open i {
        transform: rotate(180deg);
    }
}

@media(max-width:420px) {
    .mobile_top_bar {
        height: 100px;
        gap: 12px;
        padding: 0 18px;
        grid-template-columns: 1fr repeat(3, 54px);
    }

    .mobile_top_icon.circle {
        width: 52px;
        height: 52px;
        font-size: 23px;
        border-width: 3px;
    }

    .mobile_header_shell {
        height: 130px;
        padding: 0 38px;
    }

    .mobile_logo {
        width: 40%;
    }

    .mobile_logo img {
        width: 100%;
        height: 100%;
    }
}


/* ===================================================== */
/* Footer SECTION */
/* ===================================================== */

.project_footer {
    background: #223311 !important;
    color: #fff !important;
    margin-top: 60px;
    padding: 60px 20px 20px;
    font-family: sans-serif;
}

.footer_container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer_col h3 {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    color: #fff !important;
    font-family: system-ui, sans-serif;
    font-weight: 500;
}

.footer_col h3::after {
    content: "";
    display: block;
    width: 80px;
    border-bottom: 4px dotted #9ca44a;
    margin-top: 10px;
}

.footer_item {
    display: flex;
    /* align-items: center; */
    gap: 12px;
    margin-bottom: 8px;
}

.footer_item p {
    width: 80%;
    color: #fff;
    font-size: 17px !important;
}

.footer_icon {
    width: 40px;
    height: 40px;
    background: #9ca44a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: -5px;
}

.footer_col ul {
    list-style: none;
    padding: 0;
}

.footer_col li {
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.footer_col li:hover {
    color: #9ca44a;
}

.footer_bottom {
    width: 90%;
    border-top: 1px solid #fff;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_bottom p {
    margin-top: 15px;
}

.footer_bottom p,
.footer_social a i {
    color: #fff !important;
}

.footer_social a img {
    height: 25px;
    margin-top: 8px;
}

.footer_social {
    display: flex;
    gap: 10px;
}

.footer_social a {
    width: 40px;
    height: 40px;
    background: #9ca44a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.footer_social a:hover {
    background: #b5bb5f;
}

@media (max-width: 900px) {
    .footer_container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer_container {
        width: 100%;
        grid-template-columns: 100%;
        overflow: hidden;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer_item p {
        width: 80%;
        color: #fff;
        font-size: 15px !important;
    }
}

@media (max-width: 1024px) {
    .footer_icon {
        margin-top: 10px;
    }
}

/* =============================================== */
/* Hero Section  */
/* =============================================== */

.hero_section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-inline: 6%;
    color: #ffffff;
    background: url("https://patagoniasouthamerica.com/wp-content/uploads/2026/03/Hero_W_trek.jpeg") center / cover no-repeat;
    overflow: hidden;
    padding: 7%;
}

.hero_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0));
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.etp-rating {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.etp-rating img {
    width: 75px;
}

.etp-stars {
    color: #fbbf24;
}

.hero_section-title {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 600;
    color: #ffffff;
}

.hero_section-p {
    text-align: left;
}

.hero_section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 0;
}

.hero_section-actions {
    display: flex;
    gap: 18px;
}

.hero-btn {
    color: white;
}

.hero_cta_btn {
    background: #9ca44a;
    color: white;
    padding: 15px 20px;
    width: fit-content;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero_cta_btn:hover {
    border: 2px solid #9ca44a;
    color: #9ca44a;
    background: none;
    /* background: #f5f6eb; */
}

@media (max-width: 768px) {
    .hero_section {
        padding-inline: 8%;
    }

    .hero_section-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =============================================== */
/* TRUSTED BY / MEDIA LOGOS  */
/* =============================================== */

.project_trusted {
    border-top: 1px solid #92984A;
    border-bottom: 1px solid #92984A;
    margin-top: 60px;
}

.project_trusted_inner {
    /* width: 90%; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.project_trusted_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_trusted_item img {
    max-height: 46px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project_trusted_item:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* =============================================== */
/* Patagonia TOOLTIP (BOTTOM POSITION)  */
/* =============================================== */

.project_tooltip {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    color: #020617;
    font-size: 13px;
    line-height: 1.5;
    padding: 5px 14px;
    border-radius: 10px;
    width: 220px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 20;
}

/* Tooltip arrow (TOP of tooltip) */
.project_tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

/* Show tooltip on hover */
.project_trusted_item:hover .project_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===================================================== */
/* Reviews SECTION */
/* ===================================================== */

.project_reviews_tabs_wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    border-bottom: 1px solid #D9D9D9;
}

.project_review_tab {
    background: none;
    border: none;
    color: #64748b;
    font-size: 15px;
    cursor: pointer;
    padding-bottom: 8px;
    position: relative;
    font-size: 18px;
}

.project_review_tab_active {
    color: #9ca44a;
}

.project_review_tab_active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #9ca44a;
}

.project_reviews_divider {
    height: 1px;
    margin: 40px auto;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;

}

.project_reviews_slider_viewport {
    overflow: hidden;
    background: transparent;
    padding: 10px;
}

.project_reviews_slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    background-color: #ffffff !important;
}

.project_review_card {
    background: #ffffff;
    color: #020617;
    border-radius: 16px;
    min-width: calc(33.333% - 16px);
    margin: 10px 0;
    box-shadow: 2px 2px 5px 2px rgba(105, 105, 105, 0.522);
    padding: 2rem;
}

.project_review_user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.project_review_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_review_user span {
    font-size: 13px;
    color: #64748b;
}

.project_review_stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 24px;
}

.project_slider_arrow {
    background: transparent;
    border: 1px solid #9ca44a;
    color: #9ca44a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.project_slider_arrow.next {
    background: #9ca44a;
    color: #000000;
}

/* ========================= */
/* TAB CONTENT VISIBILITY */
/* ========================= */

.project_review_content {
    display: none;
}

.project_review_content_active {
    display: block;
}

/* ========================= */
/* REVIEWS SLIDER CONTROLS */
/* ========================= */

.project_review_controls {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    margin-top: 30px;
}

.project_review_btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #9ca44a;
    background: transparent;
    color: #9ca44a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.project_review_btn.active {
    background: #9ca44a;
    color: white;
}

/* Progress bar */
.project_review_progress {
    width: 90%;
    height: 2px;
    background: rgba(156, 164, 74, 0.3);
    position: relative;
}

.project_review_progress_fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33%;
    background: #9ca44a;
    transition: width 0.3s ease;
}

@media (max-width: 992px) {
    .project_review_card {
        min-width: 100%;
    }

    .project_video_card {
        min-width: 100%;
    }

    .project_video_thumb img {
        height: 220px;
    }

    .project_review_progress {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .project_video_card {
        min-width: 100%;
    }

    .project_video_thumb img {
        height: 200px;
    }

    .project_video_meta {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .project_video_user_info h5 {
        font-size: 14px;
    }

    .project_video_user_info p {
        font-size: 12px;
    }

    .project_video_source {
        font-size: 12px;
    }

    .project_review_progress {
        width: 80%;
    }

}

@media (max-width: 480px) {
    .project_video_thumb img {
        height: 180px;
    }

    .project_video_play {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .project_review_progress {
        width: 60%;
    }
}


/* =============================================== */
/* Statistic Component  */
/* =============================================== */

.project_stats {
    margin-top: 60px;
}

.project_stats_inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.project_stat_item {
    position: relative;
}

.project_stat_value {
    font-size: 46px;
    font-weight: 500;
    color: #9ca44a;
    /* cursor: help; */
    display: inline-block;
}

.project_stat_title {
    font-size: 21px;
}

.statistics_component_icon {
    font-size: 35px;
    font-weight: 500;
    color: #9ca44a;
    cursor: help;
    display: inline-block;
}

.project_stat_tooltip {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 200px;
    padding: 10px 14px;
    background: #ffffff;
    color: #020617;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 20;
}

/* Tooltip Arrow (TOP) */
.project_stat_tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.project_stat_item:hover .project_stat_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.project_stat_label {
    font-size: 16px;
    margin-top: 6px;
    color: #000;
}

@media (max-width: 992px) {
    .project_stats_inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .project_stat_value {
        font-size: 38px;
    }
}

@media (max-width: 375px) {
    .project_stats_inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project_stat_value {
        font-size: 32px;
    }

    .project_stat_label {
        font-size: 14px;
    }

    .project_stat_tooltip {
        width: 180px;
        font-size: 12.5px;
        padding: 8px 12px;
    }
}



/* =============================================== */
/* Rating Component  */
/* =============================================== */

.project_ratings {
    margin-top: 60px;
}

.project_rating_item {
    margin-bottom: 28px;
}

.project_rating_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    gap: 12px;
    font-weight: 600;
}

.project_rating_top span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project_rating_top strong {
    font-weight: 600;
    white-space: nowrap;
}

.project_rating_bar {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.project_rating_fill {
    height: 100%;
    background: #92984A;
    border-radius: 999px;
    transition: width 0.6s ease;
}

@media (max-width: 992px) {
    .project_rating_top {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .project_rating_bar {
        height: 10px;
    }
}

@media (max-width: 480px) {
    .project_rating_top {
        font-size: 14px;
    }

    .project_rating_bar {
        height: 9px;
    }
}


/* =============================================== */
/* Iconnic Trek Duration  */
/* =============================================== */

.iconic_trek {
    margin-top: 60px;
}

.iconic_contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px;
}

.iconic_card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project_iconic_value {
    font-size: 35px;
    font-weight: 500;
    color: #9ca44a;
    /* cursor: help; */
    display: inline-block;
}

.project_iconic_title {
    font-size: 21px;
}

@media (max-width: 768px) {
    .iconic_contain {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .iconic_contain {
        flex-wrap: wrap;
        gap: 40px;
    }

    .iconic_card {
        width: 100%;
    }
}

/* ===================================================== */
/* Explore Package SECTION */
/* ===================================================== */

.explore_package_trek {
    margin-top: 60px;
}

.explore_package_contain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.explore_package_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 10px;
    transition: all 0.3s ease;
    border-radius: 10px;
    width: 100%;
}

.explore_package_card:hover {
    border-bottom: 2px solid #9ca44a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.explore_package_card_btn {
    border: 2px solid #9ca44a;
    /* padding: 20px; */
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(156, 164, 74, 0.1);
    /* background-color: #f4f6e6; */
}

.explore_package_card i {
    font-size: 40px;
    color: #9ca44a;
}

.explore_package_card_title {
    color: #9ca44a;
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px;
}

.explore_package_card_p {
    margin-top: 10px;
    font-size: 15px;
    color: #64748b;
}

@media (max-width: 1024px) {
    .explore_package_contain {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .explore_package_card {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .explore-package-trek {
        padding: 20px;
    }

    .explore_package_contain {
        grid-template-columns: 1fr;
    }

    .explore_package_card {
        padding: 15px 10px;
    }
}

/* ===================================================== */
/* Trek Overview SECTION */
/* ===================================================== */

.trek_overview {
    margin-top: 60px;
}

.trek_overview_inner {
    width: 88%;
    margin: 0 auto;
    background: #f5f6eb;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
}

.trek_title {
    position: relative;
    display: inline-block;
    text-align: left;
    font-size: 2.8rem;
    font-weight: 500;
    color: #9ca44a;
    margin-bottom: 1rem;
}

.trek_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4b5a2a, #8b9241, transparent);
    border-radius: 2px;
}

.trek_cards_main {
    display: flex;
    gap: 2rem;
    margin-top: 20px;
}

.trek_card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.trek_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.trek_card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    color: #223111;
    font-family: "Poppins", sans-serif;
}

.trek_card ul {
    padding-left: 1.25rem;
}

.trek_card li {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .trek_cards_main {
        flex-direction: column;
    }

    .trek_title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .trek_overview_inner {
        padding: 2.5rem 1.5rem;
    }

    .trek_title {
        font-size: 2rem;
    }

    .trek_card {
        padding: 2rem 1.5rem;
    }
}

/* ===================================================== */
/* Best Price Package SECTION */
/* ===================================================== */

.best_price_package {
    margin-top: 60px;
}

.best_price_main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.best_price_card {
    flex: 0 0 31.5%;
    border: 1px solid #92984a;
    border-radius: 1rem;
    height: fit-content;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.best_price_card_diff {
    flex: 0 0 45%;
}

.best_price_card h3 {
    font-weight: 500;
}

.best_price_featured {
    background: #f5f6eb;
}

.best_price_badge {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    background: #92984a;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
}

.best_price_title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.best_price_info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.diff_price_package {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 30px;
    align-items: start;
    margin: 20px 0;
}

.diff_price_card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 1.5px solid #92984a;
    border-radius: 5px;
    padding: 5px;
}

.diff_price_card_overnight {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 1.5px solid #92984a;
    border-radius: 5px;
    padding: 5px;
}

.diff_price_icon,
.diff_price_card_overnight {
    color: #92984a;
    display: flex;
    align-items: start;
    justify-content: center;
    font-size: 22px;
}

.diff_price_content h4,
.diff_price_card_overnight h4 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    color: #92984a;
    text-transform: uppercase;
}

.diff_price_content p,
.diff_price_card_overnight p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: #33425b;
}

.best_price_info .calendar {
    color: #9ca44a;
}

.best_price_info br {
    display: none !important
}

.best_price_rating i {
    color: #f5c518;
}

.best_price_cost {
    font-size: 1.6rem;
    font-weight: 600;
    color: #92984a;
}

.best_price_cost del {
    font-size: 1rem;
    margin-left: 0.4rem;
    color: #9CA44A;
}

.best_price_range {
    font-size: 0.85rem;
}

.best_price_difficulty {
    display: inline-block;
    margin: 0.75rem 0 1rem;
    background: #e7e8d8;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

/* List */
.best_price_inclusion {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.best_price_list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.best_price_list li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.best_price_list li::before {
    content: "✔";
    color: #92984a;
    font-weight: 600;
}

/* Button */
.best_price_btn {
    margin-top: auto;
    background: #92984a;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    cursor: pointer;
}

.best_price_btn:hover {
    background: #7c823e;
}

.best_price_btn {
    margin-top: auto;
    background: #92984a;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    cursor: pointer;
}

.price_protip {
    display: flex;
    flex-direction: column;
    background: #9ca44a;
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    margin: 10px 0;
}

.price_protip p a {
    color: white;
}

@media (max-width:1024px) {

    .best_price_main {
        gap: 1.5rem;
    }

    .best_price_card {
        padding: 1.5rem;
    }

    .best_price_title {
        font-size: 1.2rem;
    }

    .best_price_cost {
        font-size: 1.4rem;
    }

    .diff_price_package {
        column-gap: 50px;
        row-gap: 35px;
    }

}

@media (max-width:768px) {

    .best_price_main {
        /* grid-template-columns: 100%; */
        gap: 1.4rem;
    }

    .best_price_card {
        flex: 0 0 48%;
        padding: 1.4rem;
    }

    .best_price_featured {
        order: -1;
    }

    .best_price_info {
        font-size: 0.8rem;
    }

    .best_price_list li {
        font-size: 0.85rem;
    }

    .best_price_btn {
        font-size: 0.95rem;
        padding: 0.7rem;
    }

    .diff_price_package {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .diff_price_card {
        gap: 16px;
    }
}

@media (max-width:480px) {

    .best_price_card {
        flex: 0 0 100%;
        padding: 1.25rem;
        border-radius: 0.9rem;
        padding-top: 2rem;
    }

    .best_price_title {
        font-size: 1.1rem;
    }

    .best_price_cost {
        font-size: 1.3rem;
    }

    .best_price_range {
        font-size: 0.8rem;
    }

    .best_price_difficulty {
        font-size: 0.7rem;
    }

    .best_price_list {
        margin-bottom: 1.2rem;
    }

    .best_price_list li {
        font-size: 0.82rem;
    }

    .best_price_badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
    }

}

/* ===================================================== */
/* Difficulty SECTION [Why Choose Trek] */
/* ===================================================== */

.difficuly_why_section {
    margin-top: 60px;
}

.difficuly_why_stats_main {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 2.4rem 0;
    text-align: center !important;
}

.difficuly_why_stat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid #223111;
    border-radius: 14px;
    padding: 22px 28px;
    background: #f6f7ee;
}

.difficuly_why_stat strong {
    font-size: 28px;
    color: #223111;
    line-height: 1.25;
    font-weight: 500;
}

.difficuly_why_stat span {
    font-size: 14px !important;
    color: #223111;
}

@media (max-width: 900px) {
    .difficuly_why_stats_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .difficuly_why_stat {
        min-width: 100%;
    }
}

@media (max-width: 520px) {
    .difficuly_why_stats_main {
        grid-template-columns: 1fr;
    }
}

.difficuly_tabs {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #9ca44a;
    color: #000;
}

.difficuly_tab_buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.difficuly_tab_btn {
    padding: 10px 18px;
    border: 1px solid #9ca44a;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
}

.difficuly_tab_content h3 {
    text-align: left !important;
    font-size: 24px !important;
    color: #9ca44a !important;
}

.difficuly_tab_btn.active {
    border: 2px solid #9ca44a;
    background: #9ca44a;
    color: white;
    border-radius: 8px;
}

.difficuly_tab_content {
    display: none;
}

.difficuly_tab_content.active {
    display: block;
}

.difficuly_table {
    width: 100%;
    border-collapse: collapse;
}

.difficuly_table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.difficuly_table th,
.difficuly_table td {
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 7px !important;
    text-align: left;
    vertical-align: top;
}

.difficuly_table th {
    font-weight: 600;
}

.overall_Difficulties {
    background: #9ca44a;
    margin-top: 20px;
    padding: 15px;
    color: #fff;
    text-align: left;
    border-radius: 8px;
}

.overall_Difficulties h4,
.overall_Difficulties p {
    color: white !important;
    margin-top: 10px !important
}

@media (max-width:1024px) {

    .difficuly_tabs {
        padding: 24px 18px;
    }

    .difficuly_tab_content h3 {
        font-size: 22px !important;
    }

}

@media (max-width:480px) {

    .difficuly_tab_buttons {
        gap: 10px;
        flex-direction: column;
        padding-bottom: 5px;
    }

    .difficuly_tab_btn {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 14px;
    }

}

@media (max-width:480px) {

    .difficuly_tabs {
        padding: 10px;
    }

    .difficuly_tab_content h3 {
        font-size: 20px !important;
    }

    .overallDifficulties {
        font-size: 14px;
        padding: 14px;
    }

    .overallDifficulties h3,
    .overallDifficulties h4 {
        font-size: 18px !important;
        color: White !important;
    }

}

@media (max-width:768px) {

    .difficuly_table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;

        /* Firefox */
        scrollbar-width: thin !important;
        scrollbar-color: #92984A #f1f1f1 !important;
    }

    .difficuly_table thead {
        display: table-header-group;
    }

    .difficuly_table th,
    .difficuly_table td {
        font-size: 14px;
        padding: 12px 10px !important;
    }

    .difficuly_table::-webkit-scrollbar {
        height: 8px !important;
    }

    .difficuly_table::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
        border-radius: 10px;
    }

    .difficuly_table::-webkit-scrollbar-thumb {
        background: #92984A !important;
        border-radius: 10px;
    }

    .difficuly_table::-webkit-scrollbar-thumb:hover {
        background: #7e843e !important;
    }

    /* Firefox */
    .difficuly_table {
        scrollbar-width: thin;
        scrollbar-color: #92984A #f1f1f1;
    }
}



/* ===================================================== */
/* Season SECTION */
/* ===================================================== */

.Season_section {
    margin-top: 60px;
}

.Season_tabs {
    display: flex;
    justify-content: center;
    background: #f6f7ee;
    border-radius: 40px;
    padding: 5px;
    border: 1px solid #9ca44a;
    width: fit-content;
    margin: 0 auto 25px;
}

.Season_tab {
    border: none;
    background: transparent;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.Season_tab.active {
    background: #9ca44a;
    color: #fff;
}

.Season_box_wrap {
    background: #efefe6;
    padding: 25px;
    border-radius: 16px;
}

.Season_content {
    display: none;
}

.Season_content.active {
    display: block;
}

.Season_head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.Season_head h3 {
    color: #9ca44a;
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}

.Season_head span {
    color: #6b6b6b;
}

.Season_desc {
    color: black;
    margin-top: 10px;
}

.Season_icon {
    width: 50px;
    height: 50px;
    border: 1px solid #9ca44a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca44a;
    font-size: 20px;
}

.Season_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.Season_card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.Season_pro {
    color: #9ca44a;
}

.Season_con {
    color: red;
}

.Season_tips {
    margin-top: 15px;
    background: #9ca44a;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
}

@media screen and (max-width: 480px) {

    .Season_tips,
    .Season_card {
        padding: 10px;
    }

    .Season_icon {
        width: fit-content;
        height: fit-content;
        padding: 5px 10px;
    }
}

.Season_card ul {
    margin-top: 10px;
    list-style: none;
    padding: 0 15px;
}

.Season_card li {
    margin-bottom: 8px;
}

.Season_card i {
    margin-right: 6px;
}

.Season_card ul li .correct {
    color: #9CA44A;
}

.Season_card .cons,
.thumb-down {
    color: red;
}

.Season_card ul .wrong {
    color: red;
}

@media(max-width:768px) {
    .Season_grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================================== */
/* FAQ Tabs SECTION */
/* ===================================================== */

.global_FAQ {
    margin-top: 60px;
}

.FAQ_tabs_wrapper,
.FAQ_tabs_wrapper_diff {
    margin-top: 60px;
}

.FAQ_tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2%;
    margin-bottom: 3%;
    flex-wrap: wrap;
}

.FAQ_tab_btn {
    padding: 12px 18px;
    border: none;
    border-radius: 30px;
    background: #e5e5e5;
    cursor: pointer;
    font-weight: 600;
}

.FAQ_tab_btn.active {
    background: #9ca44a;
    color: #fff;
}

.FAQ_tab_content {
    display: none;
    background: #9ca44a;
    padding: 0px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.FAQ_tab_content.active {
    display: block;
}

@media (max-width:480px) {

    .FAQ_tabs {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .FAQ_tab_btn {
        width: 100%;
        text-align: center;
        display: block;
        margin: 0;
        line-height: 1.3;
        padding: 14px 18px;
        box-sizing: border-box;
    }
}

/* ===================================================== */
/* FAQ Question & Answer SECTION */
/* ===================================================== */

.FAQ_wrapper {
    /* padding: 50px 0; */
    background: #fff;
}

.FAQ_tabs_wrapper_diff .FAQ_container {
    max-width: 87%;
}

@media screen and (max-width: 480px) {
    .FAQ_tabs_wrapper_diff .FAQ_container {
        max-width: 90%;
    }
}

.FAQ_container {
    max-width: 95%;
    margin: auto;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.FAQ_item {
    border: 1px solid #92984A;
    padding: 5px 20px;
    border-radius: 8px;
}

.FAQ_question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.FAQ_icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.FAQ_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.FAQ_answer ul {
    padding-left: 5px;
}

.FAQ_answer ul.icon-list li {
    list-style: none;
    margin-left: 0;
}

.FAQ_answer ul.icon-list li i {
    margin-right: 8px;
}

.FAQ_answer p {
    margin: 15px 0;
    color: #4b5563;
    line-height: 1.7;
}

.FAQ_item.active .FAQ_answer {
    max-height: 2000px;
}

.FAQ_item.active .FAQ_answer img {
    width: 100% !important;
}

.FAQ_item.active .FAQ_icon {
    transform: rotate(45deg);
}

@media (max-width:1024px) {
    .FAQ_container {
        max-width: 100%;
    }

    .FAQ_item {
        padding: 5px 14px;
    }

    .FAQ_question {
        font-size: 16px;
        line-height: 1.3;
        padding: 16px 0;
        align-items: flex-start;
    }

    .FAQ_answer {
        overflow: hidden;
    }

    .FAQ_answer p {
        font-size: 16px;
        line-height: 1.8;
        margin: 12px 0;
        word-break: break-word;
    }

    .FAQ_answer ul,
    .FAQ_answer ol {
        padding-left: 18px;
        margin: 12px 0;
    }

    .FAQ_answer li {
        margin-bottom: 12px;
        line-height: 1.8;
        word-break: break-word;
    }

    .FAQ_answer strong {
        display: inline;
    }

    .FAQ_item.active .FAQ_answer {
        max-height: 5000px;
    }

    .FAQ_icon {
        flex-shrink: 0;
        margin-left: 10px;
    }
}

.arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.FAQ_item.active .arrow {
    transform: rotate(45deg);
    /* turns + into X style */
}

@media (max-width: 480px) {
    .FAQ_container {
        max-width: 100%;
    }

    .FAQ_item {
        padding: 5px 14px;
    }

    .FAQ_question {
        font-size: 16px;
        line-height: 1.3;
        padding: 16px 0;
        align-items: flex-start;
    }

    .FAQ_answer {
        overflow: hidden;
    }

    .FAQ_answer p {
        font-size: 16px;
        line-height: 1.8;
        margin: 12px 0;
        word-break: break-word;
    }

    .FAQ_answer ul,
    .FAQ_answer ol {
        padding-left: 18px;
        margin: 12px 0;
    }

    .FAQ_answer li {
        margin-bottom: 12px;
        line-height: 1.8;
        word-break: break-word;
    }

    .FAQ_answer strong {
        display: inline;
    }

    .FAQ_item.active .FAQ_answer {
        max-height: 5000px;
    }

    .FAQ_icon {
        flex-shrink: 0;
        margin-left: 10px;
        margin-top: 15px;
    }
}

/* ===================================================== */
/* FAQ TABLE */
/* ===================================================== */

.faq_table_wrapper {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
}

/* SCROLLBAR */

.faq_table_wrapper::-webkit-scrollbar {
    height: 8px !important;
}

.faq_table_wrapper::-webkit-scrollbar-track {
    background: #e5e5e5 !important;
    border-radius: 20px !important;
}

.faq_table_wrapper::-webkit-scrollbar-thumb {
    background: #a4ab45 !important;
    border-radius: 20px !important;
}

/* TABLE */

.faq_custom_table {
    width: 100% !important;
    min-width: 900px !important;
    border-collapse: collapse !important;
    background: #fff !important;
}

/* TABLE HEAD */

.faq_custom_table th {
    background: #a4ab45 !important;
    color: #fff !important;
    padding: 20px !important;
    border: 1px solid #d7d7d7 !important;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
}

/* TABLE BODY */

.faq_custom_table td {
    padding: 20px !important;
    border: 1px solid #d7d7d7 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    background: #fff !important;
    color: #222 !important;
    vertical-align: top !important;
}

/* ZEBRA */

.faq_custom_table tr:nth-child(even) td {
    background: #f8f8f8 !important;
}

/* ===================================================== */
/* LARGE SCREEN */
/* ===================================================== */

@media(max-width:1400px) {

    .faq_custom_table {
        min-width: 1000px !important;
    }

}

/* ===================================================== */
/* TABLET */
/* ===================================================== */

@media(max-width:1024px) {

    .faq_custom_table {
        min-width: 900px !important;
    }

    .faq_custom_table th {
        font-size: 16px !important;
        padding: 18px !important;
    }

    .faq_custom_table td {
        font-size: 15px !important;
        padding: 18px !important;
    }

}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:768px) {

    .faq_table_wrapper {
        overflow-x: auto !important;
    }

    .faq_custom_table {
        min-width: 800px !important;
    }

    .faq_custom_table th {
        font-size: 15px !important;
        padding: 16px !important;
    }

    .faq_custom_table td {
        font-size: 14px !important;
        padding: 16px !important;
    }

}

/* ===================================================== */
/* SMALL MOBILE */
/* ===================================================== */

@media(max-width:480px) {

    .faq_custom_table {
        min-width: 700px !important;
    }

    .faq_custom_table th {
        font-size: 14px !important;
        padding: 14px !important;
    }

    .faq_custom_table td {
        font-size: 13px !important;
        padding: 14px !important;
    }

}

/* ===================================================== */
/* 320PX */
/* ===================================================== */

@media(max-width:320px) {

    .faq_custom_table {
        min-width: 650px !important;
    }

    .faq_custom_table th {
        font-size: 13px !important;
        padding: 12px !important;
    }

    .faq_custom_table td {
        font-size: 12px !important;
        padding: 12px !important;
    }

}

/* =============================================== */
/* Tour Accordion  */
/* =============================================== */

.tour_tab_section {
    width: 100%;
    margin-top: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.tour_tab_section .tour_tab_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tour_tab_section .tour_image_placeholder {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    height: 520px;
}

.tour_tab_section .tour_image_feature {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.tour_tab_section .tour_tab_main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
}

.tour_tab_section .tour_divider_line {
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            #9ca44a,
            transparent);
}

.tour_tab_section .tour_feature_accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour_tab_section .tour_accordion_item {
    background: #f5f6eb;
    border: 1px solid #9ca44a;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour_tab_section .tour_accordion_item:hover {
    background: #eef0d8;
}


.tour_tab_section .tour_accordion_item.active {
    background: #eef0d8;
    border-color: #92984A;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tour_tab_section .tour_accordion_header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #223111;
}

.tour_tab_section .tour_accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tour_tab_section .tour_accordion_item.active .tour_accordion_content {
    max-height: fit-content;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tour_tab_section .tour_accordion_content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

.tour_tab_section .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: #9ca44a;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.tour_tab_section .read-more-btn:hover {
    background: #8b9241;
}

@media (max-width: 992px) {
    .tour_tab_section .tour_tab_main {
        grid-template-columns: 1fr;
    }

    .tour_tab_section .tour_image_placeholder {
        order: -1;
    }

    .tour_tab_section .tour_image_placeholder {
        height: auto;
    }
}




/* =============================================== */
/* Vertical Tab Accordion  */
/* =============================================== */

.vertical_tab_section {
    width: 100%;
    margin-top: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.vertical_tab_wrapper {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.vertical_tab_right {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.vertical_tab_item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
}

.vertical_tab_line {
    width: 5px;
    min-width: 5px;
    border-radius: 10px;
    background: #d9d9d9;
    transition: all 0.3s ease;
    height: 100%;
}

.vertical_tab_content h2,
.vertical_tab_content h3,
.vertical_tab_content h4 {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #6d6d6d;
    transition: all 0.3s ease;
}

.vertical_tab_body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    margin-bottom: 10px;
}

.vertical_tab_body p {
    margin: 20px 0 0;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
}

.vertical_tab_item.active .vertical_tab_line {
    background: #92984a;
    height: 100%;
}

.vertical_tab_item.active .vertical_tab_content h2,
.vertical_tab_item.active .vertical_tab_content h3,
.vertical_tab_item.active .vertical_tab_content h4 {
    color: #2d2d2d;
}

.vertical_tab_item.active .vertical_tab_body {
    max-height: fit-content;
}

.vertical_tab_left {
    width: 100%;
}

.vertical_tab_image_box {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.vertical_tab_image_box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    transition: opacity 0.35s ease;
}

/* =============================================== */
/* VERTICAL TAB LIST */
/* =============================================== */

.vertical_tab_body ul,
.vertical_tab_body ol,
.vertical_tab_ul,
.vertical_tab_ol {

    margin: 20px 0 !important;

    padding-left: 25px !important;

    text-align: left !important;

}

.vertical_tab_body ul li,
.vertical_tab_body ol li,
.vertical_tab_ul li,
.vertical_tab_ol li {

    margin-bottom: 14px !important;

    line-height: 1.8 !important;

    color: #666 !important;

    text-align: left !important;

}

.vertical_tab_body ul {

    list-style: disc !important;

}

.vertical_tab_body ol {

    list-style: decimal !important;

}

.vertical_tab_body li strong {

    color: #2d2d2d !important;

    font-weight: 700 !important;

}

.vertical_tab_body p {

    margin: 16px 0 !important;

    line-height: 1.8 !important;

    color: #666 !important;

}

/* MOBILE */

@media(max-width:767px) {

    .vertical_tab_body ul,
    .vertical_tab_body ol {

        padding-left: 20px !important;

    }

    .vertical_tab_body li {

        font-size: 15px !important;

        line-height: 1.7 !important;

    }
}

@media (max-width: 1366px) {

    .vertical_tab_content h2,
    .vertical_tab_content h3,
    .vertical_tab_content h4 {
        font-size: 28px;
    }

    .vertical_tab_body p {
        font-size: 17px;
    }

    .vertical_tab_image_box,
    .vertical_tab_image_box img {
        min-height: 620px;
        height: 620px;
    }
}

@media (max-width: 991px) {
    .vertical_tab_main {
        padding: 50px 18px;
    }

    .vertical_tab_wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .vertical_tab_left {
        order: -1;
    }

    .vertical_tab_image_box,
    .vertical_tab_image_box img {
        min-height: 420px;
        height: 420px;
        border-radius: 22px;
    }

    .vertical_tab_item {
        gap: 20px;
    }

    .vertical_tab_line {
        min-height: 70px;
    }

    .vertical_tab_item.active .vertical_tab_line {
        min-height: 180px;
    }

    .vertical_tab_content h2,
    .vertical_tab_content h3,
    .vertical_tab_content h4 {
        font-size: 24px;
    }

    .vertical_tab_body p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .vertical_tab_main {
        padding: 40px 15px;
    }

    .vertical_tab_wrapper {
        gap: 28px;
    }

    .vertical_tab_right {
        gap: 18px;
    }

    .vertical_tab_item {
        gap: 14px;
    }

    .vertical_tab_content h2,
    .vertical_tab_content h3,
    .vertical_tab_content h4 {
        font-size: 20px;
    }

    .vertical_tab_body p {
        font-size: 15px;
        margin-top: 14px;
    }

    .vertical_tab_line {
        width: 4px;
        min-width: 4px;
        min-height: 56px;
    }

    .vertical_tab_item.active .vertical_tab_line {
        min-height: 150px;
    }

    .vertical_tab_image_box,
    .vertical_tab_image_box img {
        min-height: 280px;
        height: 280px;
        border-radius: 18px;
    }
}



/* =============================================== */
/* Booking Form  */
/* =============================================== */

.inca_booking_section {
    margin-top: 60px;
}

.inca_booking_container {
    max-width: 1250px;
    margin: 0 auto;
}

.inca_booking_header {
    text-align: center;
    margin-bottom: 35px;
}

.inca_booking_header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1f1f1f;
    margin: 0 0 12px;
    font-weight: 700;
}

.inca_booking_header p {
    font-size: 17px;
    color: #666;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

.inca_booking_form_wrap {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.inca_form_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.inca_form_group {
    display: flex;
    flex-direction: column;
}

.inca_form_group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.inca_form_group select,
.inca_form_group input {
    height: 54px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
}

.inca_form_group select:focus,
.inca_form_group input:focus {
    border-color: #92984a;
    box-shadow: 0 0 0 3px rgba(146, 152, 74, 0.12);
}

.inca_form_btn_wrap {
    text-align: center;
    margin-top: 28px;
}

.inca_submit_btn,
.inca_book_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #92984a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.inca_submit_btn:hover,
.inca_book_btn:hover {
    background: #a5ab56;
    transform: translateY(-2px);
}

.inca_package_results {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inca_package_results.active {
    display: grid;
}

.inca_package_card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06); */
    transition: all 0.3s ease;
}

.inca_package_card:hover {
    transform: translateY(-6px);
}

.inca_package_img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.inca_package_content {
    padding: 24px;
}

.inca_package_content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 14px;
    color: #222;
    font-weight: 700;
}

.inca_package_content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 18px;
}

.inca_package_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.inca_package_meta span {
    background: #f3f4e7;
    color: #4f5524;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.inca_empty_message {
    grid-column: 1 / -1;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    color: #555;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

/* Tablet */
@media (max-width: 991px) {
    .inca_booking_header h2 {
        font-size: 34px;
    }

    .inca_form_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inca_package_results.active {
        grid-template-columns: repeat(2, 1fr);
    }

    .inca_booking_form_wrap {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .inca_booking_section {
        padding: 50px 15px;
    }

    .inca_booking_header h2 {
        font-size: 28px;
    }

    .inca_booking_header p {
        font-size: 15px;
    }

    .inca_form_grid {
        grid-template-columns: 1fr;
    }

    .inca_package_results.active {
        grid-template-columns: 1fr;
    }

    .inca_package_img img {
        height: 220px;
    }

    .inca_package_content {
        padding: 20px;
    }

    .inca_package_content h3 {
        font-size: 21px;
    }
}






/* =============================================== */
/* Package List  */
/* =============================================== */


.package_list_section {
    margin-top: 60px;
}

.package_list_main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.package_list_header {
    margin-bottom: 28px;
}

.package_list_title {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
}

.package_list_text {
    max-width: 760px;
    margin: 0;
    color: #59604f;
    line-height: 1.65;
}

.packing_progress_box {
    max-width: 100%;
    margin: 0 auto 40px;
    background: #f6f7f1;
    border-radius: 16px;
    padding: 20px;
}

.packing_progress_top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.packing_progress_bar {
    width: 100%;
    height: 14px;
    background: #e3e5d5;
    border-radius: 999px;
    overflow: hidden;
}

.packing_progress_fill {
    height: 100%;
    width: 0%;
    background: #9ca44a;
    border-radius: 999px;
    transition: width 0.4s ease;
}

.packing_tabs_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}

.packing_tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px;
    border: 1px solid #9ca44a;
    border-radius: 999px;
    flex: 1;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.packing_tabs::-webkit-scrollbar {
    display: none;
}

.packing_tab {
    padding: 8px 22px;
    border-radius: 999px;
    border: 1px solid #9ca44a;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    color: #1f2818;
}

.packing_tab.active {
    background: #9ca44a;
    color: #fff;
}

.packing_tab_arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #9ca44a;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.packing_tab_info {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.packing_tooltip {
    position: fixed;
    max-width: 240px;
    background: #223111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100000;
    white-space: nowrap;
}

.packing_card_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.packing_card {
    background: #f5f6eb;
    border-radius: 16px;
    border: 1px solid #d6d8c3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.packing_card[hidden] {
    display: none;
}

.packing_card_top {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.packing_card_top small {
    color: #697448;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.packing_card_top h5 {
    margin: 6px 0 0;
    font-size: 18px;
}

.packing_checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #9ca44a;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    flex: 0 0 auto;
}

.packing_checkbox.checked {
    background: #9ca44a;
}

.packing_checkbox.checked::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.packing_card_bottom {
    background: #dde0c4;
    text-align: center;
    padding: 12px;
    font-weight: 500;
    cursor: pointer;
    border: 0;
    width: 100%;
    font: inherit;
    color: #1f2818;
}

.packing_modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.packing_modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.packing_modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 20, 0.55);
    backdrop-filter: blur(6px);
}

.packing_modal_box {
    position: relative;
    max-width: 720px;
    width: calc(100% - 32px);
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.packing_modal_close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.packing_modal_category {
    padding: 28px 32px 0;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca44a;
    font-weight: 700;
}

.packing_modal_title {
    padding: 0 32px 18px;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 10px 0 0;
}

.packing_modal_body {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.packing_modal_badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.packing_modal_badge.critical {
    background: #e5533d;
    color: #fff;
}

.packing_modal_badge.high {
    background: #5a9bd4;
    color: #fff;
}

.packing_modal_badge.moderate {
    background: #f1a23c;
    color: #222;
}

.packing_modal_block {
    background: #f7f8ee;
    border-radius: 16px;
    padding: 18px 20px;
    border-left: 4px solid #9ca44a;
}

.packing_modal_block h4 {
    font-size: 0.95rem;
    margin: 0 0 6px;
    color: #4b5a2a;
}

.packing_modal_block p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

#Packlist .packing_download_btn {
    position: sticky;
    bottom: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 40px;
    z-index: 20;
}

#Packlist .packing_download_btn button {
    background: #9ca44a;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background 0.2s ease;
}

#Packlist .packing_download_btn button:hover {
    background: #8b9241;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .package_list_section {
        padding: 50px 0;
    }

    .packing_modal_box {
        width: calc(100% - 24px);
        max-height: 92vh;
        border-radius: 18px;
    }

    .packing_modal_title {
        font-size: 1.35rem;
    }

    .packing_modal_block p {
        font-size: 0.9rem;
    }

    .packing_tooltip {
        max-width: 85vw;
        font-size: 11px;
    }
}





/* =============================================== */
/* Weather Forecast  */
/* =============================================== */

.weather_forecast_section {
    margin-top: 60px;
    background: #ffffff;
    border-radius: 20px;
    color: #4b5a2a;
}

.weather_forecast_tabs {
    text-align: center;
    margin-bottom: 40px;
}

.weather_forecast_tab {
    background: transparent;
    border: 2px solid #9ca44a;
    color: #4b5a2a;
    padding: 12px 30px;
    margin: 5px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.weather_forecast_tab:hover {
    background: #8b9241;
    color: #fff;
}

.weather_forecast_tab.active {
    background: #9ca44a;
    color: #fff;
}

.weather_forecast_view {
    display: none;
}

.weather_forecast_view.active {
    display: block;
}

.weather_forecast_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.weather_forecast_daily {
    position: relative;
    background: linear-gradient(180deg, #b7be6a, #8b9241);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: left;
    color: #ffffff;
    min-height: 450px;
    box-shadow:
        0 10px 30px rgba(75, 90, 42, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
}

.weather_forecast_daily:hover {
    transform: translateY(-6px);
}

.weather_forecast_date {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.weather_forecast_badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #9ca44a;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.weather_forecast_icon {
    font-size: 70px;
    /* margin: 15px 0; */
    text-align: center;
}

.weather_forecast_temp {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
}

.weather_forecast_low {
    text-align: center;
    font-size: 18px;
    margin-top: 6px;
    opacity: 0.9;
}

.weather_forecast_condition {
    text-align: center;
    font-size: 20px;
    margin-top: 12px;
    font-weight: 500;
}

.weather_forecast_divider {
    margin: 30px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.weather_forecast_status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather_forecast_state {
    text-align: center;
    font-size: 15px;
}

.weather_forecast_state i {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.weather_forecast_loadmore {
    text-align: center;
    margin-top: 40px;
}

#weather_forecast_more_btn {
    padding: 14px 35px;
    border-radius: 40px;
    border: none;
    background: #9ca44a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#weather_forecast_more_btn:hover {
    background: #8b9241;
}

.weather_forecast_month {
    margin-bottom: 45px;
}

.weather_forecast_month_title {
    font-size: 28px;
    font-weight: 800;
    color: #9ca44a;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.weather_forecast_month_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #9ca44a, transparent);
}

.weather_forecast_month_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.weather_forecast_calendar {
    background: #f4f6ec;
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    color: #4b5a2a;
    border: 1px solid #e3e6d5;
    transition: 0.3s ease;
}

.weather_forecast_calendar:hover {
    transform: translateY(-4px);
}

.weather_forecast_day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.weather_forecast_calendar i {
    font-size: 24px;
    margin: 5px 0;
}

.weather_forecast_range {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.weather_forecast_guide {
    margin-top: 70px;
    background: #f4f6ec;
    padding: 40px;
    border-radius: 25px;
}

.weather_forecast_guide h3 {
    color: #4b5a2a;
    font-size: 24px;
    margin-bottom: 25px;
}

.weather_forecast_guide_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.weather_forecast_guide_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f7f9fb;
    border-radius: 10px;
    line-height: 1.5;
}

.weather_forecast_guide_item i {
    font-size: 20px;
    color: #4b5a2a;
    margin-top: 3px;
}

@media screen and (max-width: 768px) {
    .weather_forecast_guide {
        padding: 10px 0;
    }

    .weather_forecast_guide h3 {
        margin: 15px;
    }

    .weather_forecast_guide_item {
        margin: 0 15px;
    }
}





/* ===================================================== */
/* Climate Widget SECTION */
/* ===================================================== */

.climate_widget {
    margin-top: 60px;
    background: #fff;
}

.climate_widget_tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(156, 164, 74, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(156, 164, 74, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.climate_widget_tab {
    position: relative;
    padding: 15px 10px;
    background: #cfd1df;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9em;
}

.climate_widget_tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(156, 164, 74, 0.25);
}

.climate_widget_tab.active {
    background: #9ca44a;
    border-color: #9ca44a;
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 15px 40px rgba(156, 164, 74, 0.35);
}

.climate_global_tooltip {
    position: fixed;
    z-index: 999999;
    background: #222;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 240px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
}

.climate_global_tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 7px 7px 7px;
    border-style: solid;
    border-color: transparent transparent #222 transparent;
}

.climate_widget_container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.14);
    position: relative;
    overflow: hidden;
}

.climate_widget_title {
    font-size: 2em;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.climate_widget_main {
    width: 100% !important;
    height: 500px !important;
    position: relative !important;
}

.climate_widget_grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.climate_widget_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    color: #333;
    font-weight: 600;
}

.climate_widget_temp {
    width: 30px;
    height: 15px;
    border-radius: 5px;
}

.climate_widget_details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.climate_widget_card {
    background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(246, 247, 241, .95));
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(156, 164, 74, 0.28);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.climate_widget_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
}

.climate_widget_icon {
    font-size: 3.2em;
    color: #9ca44a;
}

.climate_widget_head {
    font-size: 1.45em;
    color: #9ca44a;
    margin-bottom: 15px;
    font-weight: 800;
}

.climate_widget_value {
    font-size: 2em;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 35px;
}

.climate_widget_description {
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    font-weight: 500;
}

.climate_widget_info {
    background: linear-gradient(135deg, rgba(156, 164, 74, 0.16), rgba(255, 255, 255, 0.92));
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(156, 164, 74, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.climate_widget_season_head {
    font-size: 2em;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.climate_widget_season_badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.6em;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.climate_widget_season_description {
    color: #333;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.climate_widget_season_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.climate_widget_season_item {
    background: #d5daa1;
    padding: 20px;
    border-left: 4px solid #9ca44a;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.climate_widget_season_title {
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.climate_widget_season_tips {
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}

@media (min-width: 1024px) {

    #incaClimateGraph {
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 1024px) {

    .climate_widget_details {
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    }
}

@media (max-width: 768px) {

    .inca-climate-title {
        font-size: 1.8em;
    }

    .climate_widget_tabs {
        grid-template-columns: repeat(3, 1fr);
        padding: 16px;
    }

    .climate_widget_container {
        padding: 20px;
    }

    .climate_widget_details {
        grid-template-columns: 100%;
    }

    .climate_widget_main {
        height: 350px !important;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    #incaClimateGraph {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .climate_widget_info {
        padding: 40px 0;
    }

    .climate_widget_season_head,
    .climate_widget_season_description,
    .climate_widget_season_item {
        margin: 0 20px;
    }

    .climate_widget_season_description {
        margin-top: 20px;
    }
}




/* ===================================================== */
/* Pack Weather SECTION */
/* ===================================================== */

.pack_weather_section {
    max-width: 1200px;
    margin: auto;
    background: #eef1f9;
    border-radius: 18px;
    margin-top: 60px;
    padding: 20px;
}

.pack_weather_header {
    text-align: center;
    margin-bottom: 15px;
}

.pack_weather_header h1 {
    font-size: 26px;
    color: #333;
    margin-bottom: 6px;
}

.pack_weather_header p {
    color: #666;
    font-size: 14px;
}

.pack_weather_tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-top: 15px;
}

.pack_weather_tab_btn {
    flex: 1 1 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border: none;
    background: #f1f3ff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    min-width: 120px;
    position: relative;
}


/* Tooltip */
.pack_weather_tab_btn::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);

    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;

    width: 200px;
    text-align: center;
    white-space: normal;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

/* Arrow */
.pack_weather_tab_btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #222 transparent;

    opacity: 0;
    transition: 0.3s ease;
}

.pack_weather_tab_btn:hover::after,
.pack_weather_tab_btn:hover::before {
    opacity: 1;
}



.pack_weather_tab_btn.pack_weather_active {
    background: #9ca44a;
    color: #fff;
}

.pack_weather_main {
    display: none;
    margin-top: 20px;
}

.pack_weather_main.pack_weather_active {
    display: block;
}

.pack_weather_title {
    background: #4b5a2a;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    color: white;
}

.pack_weather_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pack_weather_card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e4e7f2;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

/* Tooltip */
.pack_weather_card::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 12px;
    width: 240px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

/* Arrow */
.pack_weather_card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #222 transparent;
    opacity: 0;
    transition: 0.3s ease;
}

/* show */
.pack_weather_card:hover::after,
.pack_weather_card:hover::before {
    opacity: 1;
}

/* Existing hover */
.pack_weather_card:hover {
    transform: translateY(-3px);
    z-index: 999;
}

.pack_weather_headCard {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pack_weather_icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pack_weather_badge {
    display: inline-block;
    background: #8b9241;
    color: white;
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.pack_weather_card h3 {
    font-size: 15px;
    margin-bottom: 3px;
}

.pack_weather_card p {
    font-size: 13px;
    color: #555;
}

@media (max-width: 1024px) {
    .pack_weather_grid {
        grid-template-columns: repeat(2, 49.2%);
    }
}

@media (max-width: 768px) {
    .pack_weather_grid {
        grid-template-columns: 100%;
    }

    .pack_weather_header h1 {
        font-size: 20px;
    }
}





/* ===================================================== */
/* Packages SECTION */
/* ===================================================== */

.packages_section {
    margin-top: 60px;
    color: #1E350A;
}

.packages_tab_wrap {
    margin: 2.5rem 0;
}

.packages_tab_border {
    border: 1px solid #9ca44a;
    border-radius: 999px;
    padding: 6px;
}

.packages_tabs_main {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-between;
}

.packages_tabs_main::-webkit-scrollbar {
    display: none;
}

.packages_tabs {
    padding: 10px 18px;
    border-radius: 999px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1e350a;
}

.packages_tabs.active {
    background: #9ca44a;
    color: #ffffff;
}

.packages_content {
    display: none;
}

.packages_content.active {
    display: block;
}

.packages_grid,
.packages_bottom {
    display: flex;
    gap: 2rem;
    margin-top: 15px;
    align-items: stretch;
    box-sizing: border-box;
}

.packages_card,
.packages_info {
    width: 55%;
    box-sizing: border-box;
}

.packages_image,
.packages_stats {
    width: 45%;
    box-sizing: border-box;
}

.packages_card,
.packages_info {
    background: #EFF1F3;
    padding: 1.5rem;
    border-radius: 14px;
    border-left: 3px solid #92984A;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

.packages_book .packages_info {
    background: #e9e9dc;
    width: 100%;
}

.packages_slider {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
}

.packages_slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.packages_slides.active {
    opacity: 1;
}

.packages_img_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #9ca44a;
    background: #ffffff;
    cursor: pointer;
    z-index: 10;
}

.packages_img_arrow.prev {
    left: 12px;
}

.packages_img_arrow.next {
    right: 12px;
}

.packages_img_caption {
    text-align: center;
    font-size: 14px;
    margin-top: 12px;
}

.packages_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.packages_dots span {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background: #9ca44a;
    border-radius: 50%;
    opacity: 0.35;
    display: inline-block;
}

.packages_dots span.active {
    opacity: 1;
}

.packages_stats {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-between;
    align-items: start;
    align-content: start;
    gap: 16px;
    margin-top: 20px;
    box-sizing: border-box;
}

.packages_state_box {
    min-height: fit-content;
    height: auto;
    background: #92984A;
    border-radius: 14px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-sizing: border-box;
}

.packages_state_box i {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 6px;
}

.packages_state_box h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.packages_state_box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    color: #1e350a;
}

.packages_book {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1.5rem;
    background: #F4F6E9;
    border-radius: 8px;
    padding: 15px;
}

.packages_check {
    margin-bottom: 20px;
}

.packages_info {
    margin-top: 20px;
}

.packages_check p,
.packages_info p {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0px;
}

.packages_check i {
    color: #92984A;
    font-weight: bolder;
}

.packages_book_btn {
    background: #92984A;
    border-radius: 8px;
    padding: 1rem 1.4rem;
    border: none;
    color: #ffffff;
    cursor: pointer;
    width: fit-content;
}

@media (max-width: 900px) {

    .packages_grid,
    .packages_bottom {
        flex-direction: column;
    }

    .packages_card,
    .packages_info,
    .packages_image {
        width: 100%;
    }

    .packages_stats {
        width: 100%;
        display: grid;
        grid-template-columns: 45% 45%;
    }

    .packages_state_box {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .packages_state_box {
        width: 100%;
    }

    .packages_stats {
        display: grid;
        grid-template-columns: 100%;
    }

    .packages_tabs {
        font-size: 14px;
        padding: 6px 12px;
    }

    .packages_book_btn {
        margin-bottom: 10px;
    }
}



/* ===================================================== */
/* Guide Packages SECTION */
/* ===================================================== */

.Guide_packages_section {
    margin-top: 60px;
    /* background: #fafafa; */
}

.ptg-header {
    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.ptg-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #92984A;
    margin-bottom: 15px;
}

.ptg-content {
    text-align: center !important;
}

/* readmore text */

.ptg-readmore-wrap {}

.ptg-readmore-wrap ul {
    margin-top: 12px;
    padding-left: 20px;
}

.ptg-readmore-btn {
    background: none;
    border: none;
    color: #92984A;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.Guide_packages_tabs_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.Guide_packages_tabs {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #e6e6e6;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none;
}

.Guide_packages_tabs::-webkit-scrollbar {
    display: none;
}

.Guide_packages_tab {
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: .25s;
    white-space: nowrap;
}

.Guide_packages_tab:hover {
    background: #f1f3e2;
    color: #92984A;
}

.Guide_packages_tab.active {
    background: #92984A;
    color: #fff;
}

.Guide_packages_cards_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

@media(max-width:1000px) {
    .Guide_packages_cards_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .Guide_packages_cards_main {
        grid-template-columns: 1fr;
    }
}

.Guide_packages_card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e7e7e7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.Guide_packages_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    border-color: #92984A;
}

.Guide_packages_card_body {
    padding: 24px;
    flex: 1;
}

.Guide_packages_card_body h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.Guide_packages_card_body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 14px;
}

.Guide_packages_card_body h5 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #92984A;
    margin-top: 15px;
}

.Guide_packages_card_body ul {
    padding-left: 18px;
    margin: 0;
}

.Guide_packages_card_body li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.Guide_packages_footer {
    border-top: 1px solid #eee;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Guide_packages_price small {
    display: block;
    font-size: 12px;
    color: #777;
}

.Guide_packages_price strong {
    font-size: 24px;
    color: #92984A;
    font-weight: 700;
}

.Guide_packages_footer button {
    background: #92984A;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: .25s;
}

.Guide_packages_footer button:hover {
    background: #7f853e;
}





/* ===================================================== */
/* Inca Slide Packages SECTION */
/* ===================================================== */

.incaSlider_package_section {
    margin-top: 60px;
}

.incaSlider_package_viewport {
    overflow: hidden;
}

.incaSlider_package_slider {
    display: flex;
    gap: 14px;
    transition: transform 0.4s ease;
    padding: 10px 0;
}

.incaSlider_package_card {
    height: fit-content;
    min-width: calc(33.333% - 10px);
    border: 1px solid #9ca44a;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}

.incaSlider_package_image {
    height: 275px;
    background: #f4f4f4;
    position: relative;
    border-bottom: 1px solid #9ca44a;
    overflow: hidden;
}

.incaSlider_package_image img {
    width: 100%;
}

.incaSlider_package_badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #e8e8dc;
    color: #9ca44a;
    padding: 8px 14px;
    border-radius: 18px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.incaSlider_package_body {
    padding: 16px 14px 0;
}

.incaSlider_package_card h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
}

.incaSlider_package_subtitle {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 18px;
}

.incaSlider_package_text,
.incaSlider_package_list,
.incaSlider_package_meta,
.incaSlider_package_highlights {
    font-family: Arial, sans-serif;
}

.incaSlider_package_text {
    font-size: 15px;
    text-align: left;
    line-height: 1.45;
}

.incaSlider_package_heading {
    color: #9ca44a;
    font-size: 18px;
    margin: 14px 0 7px;
}

.incaSlider_package_title {
    font-size: 18px;
    margin: 14px 0 7px;
}

.incaSlider_package_list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.incaSlider_package_list li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.incaSlider_package_list li::before {
    content: "✔";
    color: #92984a;
    font-weight: 600;
}

.incaSlider_package_meta {
    margin-top: 14px;
}

.incaSlider_package_meta div {
    background: #efefe3;
    color: #9ca44a;
    padding: 8px 14px;
    border-radius: 4px;
    margin-bottom: 7px;
    font-size: 14px;
    width: 100%;
}

.incaSlider_package_highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 20px;
}

.incaSlider_package_highlights span {
    background: #efefe3;
    color: #9ca44a;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.incaSlider_package_footer {
    border-top: 1px solid #eee;
    padding: 10px 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.incaSlider_package_price small {
    display: block;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #25320f;
}

.incaSlider_package_price strong {
    color: #9ca44a;
    font-size: 22px;
    font-weight: 400;
}

.incaSlider_package_btn {
    background: #9ca44a;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 8px 22px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 16px;
}

.incaSlider_package_controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.incaSlider_package_arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #9ca44a;
    background: #fff;
    color: #9ca44a;
    cursor: pointer;
    transition: 0.3s;
}

.incaSlider_package_arrow.active {
    background: #9ca44a;
    color: #fff;
}

.incaSlider_package_arrow:not(.active) {
    opacity: 0.6;
}

.incaSlider_package_progress {
    flex: 1;
    height: 2px;
    background: rgba(156, 164, 74, 0.35);
    position: relative;
}

.incaSlider_package_progress_fill {
    height: 100%;
    width: 33%;
    background: #9ca44a;
    transition: width 0.3s ease;
}

@media (max-width: 992px) {
    .incaSlider_package_card {
        min-width: 100%;
    }
}











/* FIX ASTRA FLEX LAYOUT */

.site-content .ast-container {
    display: block !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.ast-container {
    display: block !important;
}

.dynamic_landing_main {
    width: 100%;
}

.dynamic_landing_main section {
    width: 100%;
    clear: both;
}

.dynamic_landing_main {
    width: 100%;
    display: block;
}

.dynamic_landing_main>section {
    width: 100%;
    display: block;
    clear: both;
}

.hero_section {
    width: 100%;
}

.FAQ_tabs_wrapper_diff {
    width: 100%;
}

/* =========================================
FAQ FIX
========================================= */

.FAQ_question {
    width: 100% !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    padding: 18px 0 !important;

    font-size: 18px !important;
    font-weight: 600 !important;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    cursor: pointer !important;

    text-align: left !important;

    transition: all 0.3s ease !important;
}

/* HOVER */

.FAQ_question:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* FOCUS */

.FAQ_question:focus {
    background: #ffffff !important;
    color: #000000 !important;

    outline: none !important;
    box-shadow: none !important;
}

/* ACTIVE */

.FAQ_question:active {
    background: #ffffff !important;
    color: #000000 !important;
}

/* OPEN ITEM */

.FAQ_item.active .FAQ_question {
    background: #ffffff !important;
    color: #000000 !important;
}

/* PLUS ICON */

.FAQ_question .arrow,
.FAQ_question .FAQ_icon {
    color: #000000 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

/* REMOVE ASTRA BUTTON STYLE */

.FAQ_question.wp-element-button,
.FAQ_question.button,
.FAQ_question[type="button"] {
    background: #ffffff !important;
}

/* FAQ BOX */

.FAQ_item {
    background: #ffffff !important;
}

/* ANSWER */

.FAQ_answer {
    background: #ffffff !important;
    color: #000000 !important;
}


/* =======================================================
GLOBAL BUTTON / TAB / READMORE FIX
======================================================= */

/* REMOVE BLUE TAP HIGHLIGHT MOBILE */

* {
    -webkit-tap-highlight-color: transparent;
}

/* =======================================================
ALL BUTTON RESET
======================================================= */

button,
button:hover,
button:focus,
button:active,
button:visited {
    outline: none !important;
    box-shadow: none !important;
}

/* =======================================================
READ MORE BUTTON FIX
======================================================= */

.project_readmore_btn,
.project_readmore_btn:hover,
.project_readmore_btn:focus,
.project_readmore_btn:active {
    background: transparent !important;
    color: #9ca44a !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* INNER READ MORE */

.inner_expand_btn,
.inner_expand_btn:hover,
.inner_expand_btn:focus,
.inner_expand_btn:active {
    background: #9ca44a !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =======================================================
FAQ BUTTON FIX
======================================================= */

.FAQ_question,
.FAQ_question:hover,
.FAQ_question:focus,
.FAQ_question:active {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* FAQ ACTIVE */

.FAQ_item.active .FAQ_question {
    background: #ffffff !important;
    color: #000000 !important;
}

/* =======================================================
FAQ TAB BUTTON FIX
======================================================= */

.FAQ_tab_btn {
    background: #e5e5e5 !important;
    color: #000000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.FAQ_tab_btn:hover,
.FAQ_tab_btn:focus,
.FAQ_tab_btn:active {
    background: #d9d9d9 !important;
    color: #000000 !important;
}

/* ACTIVE TAB */

.FAQ_tab_btn.active {
    background: #9ca44a !important;
    color: #ffffff !important;
}

/* =======================================================
SEASON TAB FIX
======================================================= */

.Season_tab {
    background: transparent !important;
    color: #000000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.Season_tab:hover,
.Season_tab:focus,
.Season_tab:active {
    background: #d9d9d9 !important;
    color: #000000 !important;
}

.Season_tab.active {
    background: #9ca44a !important;
    color: #ffffff !important;
}

/* =======================================================
DIFFICULTY TAB FIX
======================================================= */

.difficuly_tab_btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #9ca44a !important;
    outline: none !important;
    box-shadow: none !important;
}

.difficuly_tab_btn:hover,
.difficuly_tab_btn:focus,
.difficuly_tab_btn:active {
    background: #f5f6eb !important;
    color: #000000 !important;
}

.difficuly_tab_btn.active {
    background: #9ca44a !important;
    color: #ffffff !important;
}

/* =======================================================
TREK TAB FIX
======================================================= */

.trek_tab_btn,
.vertical_tab_btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.trek_tab_btn:hover,
.vertical_tab_btn:hover {
    background: #f5f6eb !important;
    color: #000000 !important;
}

.trek_tab_btn.active,
.vertical_tab_btn.active {
    background: #9ca44a !important;
    color: #ffffff !important;
}

/* =======================================================
BOOK NOW BUTTON FIX
======================================================= */

.best_price_btn,
.best_price_btn:hover,
.best_price_btn:focus,
.best_price_btn:active {
    background: #9ca44a !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =======================================================
SLIDER ARROW FIX
======================================================= */

.project_review_btn,
.project_review_btn:hover,
.project_review_btn:focus,
.project_review_btn:active {
    outline: none !important;
    box-shadow: none !important;
}

/* =======================================================
LINK FIX
======================================================= */

a,
a:hover,
a:focus,
a:active,
a:visited {
    outline: none !important;
}

/* =======================================================
WORDPRESS / ASTRA BUTTON FIX
======================================================= */

.wp-element-button,
.wp-block-button__link,
button.wp-element-button {
    background: inherit !important;
    box-shadow: none !important;
    outline: none !important;
}

/* REMOVE BLUE FOCUS */

*:focus {
    outline: none !important;
    box-shadow: none !important;
}


/* =============================================== */
/* Header  */
/* =============================================== */

.patagonia_header_main {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_logo img {
    height: 80px;
    object-fit: contain;
}

.header_nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header_btn {
    background: #9ca44a;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 0 #cfd3a5;
    transition: all 0.2s ease;
}

.header_btn {
    animation: wt4-pulse 2s infinite;
}

@keyframes wt4-pulse {
    0% {
        box-shadow: 0 6px 0 #cfd3a5, 0 0 0 0 rgba(156, 164, 74, 0.5);
    }

    70% {
        box-shadow: 0 6px 0 #cfd3a5, 0 0 0 12px rgba(156, 164, 74, 0);
    }

    100% {
        box-shadow: 0 6px 0 #cfd3a5, 0 0 0 0 rgba(156, 164, 74, 0);
    }
}

.header_contact {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 25px;
    font-size: 15px;
    color: #7a8342;
}

.header_item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header_item span {
    font-size: 18px;
    font-weight: 200;
    color: #9ca44a;
    width: 200px;
}

.header_item i {
    font-size: 18px;
    color: #000;
}

.header_menu {
    margin-bottom: 10px;
}

.header_menu_list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header_menu_list li {
    margin: 0;
}

.header_menu_list a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.header_menu_list a:hover,
.header_menu_list .current-menu-item>a {
    color: #9ca44a;
}

@media (max-width: 767px) {

    .header_menu_list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header_container {
        flex-direction: column;
        gap: 15px;
    }

    .header_nav {
        align-items: center;
    }
}

@media (max-width: 500px) {

    .header_logo img {
        height: 60px;
    }

    .header_btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .header_contact {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        text-align: center;
    }
}

/* =============================================== */
/* Footer  */
/* =============================================== */

.patagonia_footer {
    background: #223311 !important;
    color: #fff !important;
    padding: 60px 20px 20px;
    font-family: sans-serif;
    margin-top: 60px;
}

.footer_container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer_col h3 {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    color: #fff !important;
    font-family: system-ui, sans-serif;
    font-weight: 500;
}

.footer_col h3::after {
    content: "";
    display: block;
    width: 80px;
    border-bottom: 4px dotted #9ca44a;
    margin-top: 10px;
}

.footer_item {
    display: flex;
    /* align-items: center; */
    gap: 12px;
    margin-bottom: 8px;
}

.footer_item p {
    width: 80%;
    color: #fff;
    font-size: 17px !important;
}

.footer_icon {
    width: 40px;
    height: 40px;
    background: #9ca44a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: -5px;
}

.footer_col ul {
    list-style: none;
    padding: 0;
}

.footer_col li {
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.footer_col li:hover {
    color: #9ca44a;
}

.footer_bottom {
    width: 90%;
    border-top: 1px solid #fff;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_bottom p {
    margin-top: 15px;
}

.footer_bottom p,
.footer_social a i {
    color: #fff !important;
}

.footer_social a img {
    height: 25px;
    margin-top: 8px;
}

.footer_social {
    display: flex;
    gap: 10px;
}

.footer_social a {
    width: 40px;
    height: 40px;
    background: #9ca44a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.footer_social a:hover {
    background: #b5bb5f;
}

@media (max-width: 900px) {
    .footer_container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer_container {
        width: 100%;
        grid-template-columns: 100%;
        overflow: hidden;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer_item p {
        width: 80%;
        color: #fff;
        font-size: 15px !important;
    }
}

@media (max-width: 1024px) {
    .footer_icon {
        margin-top: 10px;
    }
}