@font-face {
    font-family: 'Inclusive Sans';
    src: url('../fonts/InclusiveSans.woff');
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/arial.woff');
}

:root {
    --theme-green: #344F1F;
    --theme-yellow: #F4991A;
    --theme-white: #fff;
    --font-black: #171717;
    --bg-light-yellow-1: #F2EAD3;
    --bg-light-yellow-2: #F9F5F0;
    --font-inclusive: 'Inclusive Sans';
    --font-arial: 'Arial';
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-inclusive);
    font-size: 18px;
    line-height: 1.3em;
    color: var(--font-black);
}

a {
    text-decoration: none;
    color: var(--theme-yellow);
}

p {
    font-size: 18px;
    color: var(--font-black);
    font-family: var(--font-inclusive);
    line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-arial);
    color: var(--theme-green);
    font-weight: 800;
    margin-bottom: 20px;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

section {
    padding: 70px 0;
}

button {
    cursor: pointer;
    font-family: var(--font-inclusive);
    font-size: 18px;
    border: none;
}

input,
textarea,
select {
    font-family: var(--font-inclusive);
    font-size: 16px;
    color: var(--font-black);
    border: 2.5px solid var(--theme-yellow);
    border-radius: 8px;
    padding: 10px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

select option {
    color: var(--font-black);
    font-size: 16px;
    font-family: var(--font-inclusive);
    line-height: 1.3em;
    padding: 10px;

}

select option:checked {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
}

input:focus,
textarea:focus {
    outline: none;
}

.bg-light-yellow-1 {
    background-color: var(--bg-light-yellow-1);
}

.bg-light-yellow-2 {
    background-color: var(--bg-light-yellow-2);
}

.bg-yellow {
    background-color: var(--theme-yellow);
}

.bg-green {
    background-color: var(--theme-green);
}

.bg-white {
    background-color: var(--theme-white);
}

.theme-yellow-btn,
.theme-green-btn {
    background-color: var(--theme-yellow);
    border-radius: 8px;
    color: var(--theme-white);
    padding: 10px 20px;
    font-size: 17px;
    line-height: 1em;
}

.theme-green-btn {
    background-color: var(--theme-green);
}

.theme-yellow-btn:hover {
    background-color: var(--theme-green);
}

.theme-green-btn:hover {
    background-color: var(--theme-yellow);
}

.text-white {
    color: var(--theme-white);
}

.text-black {
    color: var(--font-black);
}

.text-yellow {
    color: var(--theme-yellow);
}

/* header start */
header {
    display: contents;
}

header .header-top {
    padding: 12px 8px;
    border-bottom: 2px solid var(--theme-yellow);
}

header .header-top .container-fluid,
header .header-bottom .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

header .header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .header-top-right .country-selector {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

header .header-top-right .country-selector .country-flag {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

header .header-top-right .country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--theme-white);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
}

header .header-top-right .country-btn .country-name {
    font-size: 16px;
}

header .header-top-right .country-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 6px 0;
    margin: 6px 0 0;
    width: 100px;
    display: none;
    z-index: 9999;
}

header .header-top-right .country-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--font-black);
    font-size: 16px;
    text-decoration: none;
}

header .header-top-right .country-menu li a:hover {
    background: #f3f6f3;
}


header .header-top-right .header-review-logo {
    border-left: 1px solid var(--theme-white);
    padding-left: 15px;
}

header .header-top-right .header-review-logo:first-child {
    border-left: none;
    padding-left: 0;
}

header .header-top-right .header-review-logo img {
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

header .header-top .container-fluid .header-line {
    margin-bottom: 0;
    color: var(--theme-white);
}

header .header-top .header-social-media {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

header .header-top .header-social-media li {
    margin-left: 10px;
}

header .header-top .header-social-media i {
    font-size: 26px;
}

header .header-bottom {
    padding: 12px 8px;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--theme-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .header-bottom .logo-container img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

header .header-menu-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

header .header-menu-container nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .header-menu-container nav ul li {
    margin-left: 10px;
}

header .header-menu-container nav ul li a {
    padding: 8px 14px;
    color: var(--font-black);
}

header .header-menu-container nav ul li a:hover {
    color: var(--theme-yellow);
}

/* Page Header */
.page-header {
    background: url('../images/header/header-bg.webp') no-repeat bottom center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-header h1 {
    color: var(--theme-white);
    position: relative;
    z-index: 1;
    font-size: 40px;
    letter-spacing: 2px;
}

.page-header-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
    background-color: var(--bg-light-yellow-2);
    padding: 12px 20px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-header-breadcrumb li {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
}

.page-header-breadcrumb li a {
    color: var(--theme-yellow);
}

.page-header-breadcrumb li a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    align-items: center;
}

.pagination .pagination-arrow {
    padding: 6px 5px 6px 6px;
    line-height: 1;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid transparent;
}

.pagination .pagination-arrow:hover {
    color: var(--theme-green);
    border-color: var(--theme-green);
}

.pagination-btn {
    padding: 7px 12px;
    color: var(--font-black);
    background-color: var(--bg-light-yellow-2);
    border-radius: 5px;
    border: 2px solid var(--theme-yellow);
    line-height: 1;
}

.pagination-btn:hover {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
}

.pagination-btn.active {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
}

/* Page Header end */

/* header end */

/* List styles */
.workshop-content-container .list-checked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.list-checked {
    list-style: none;
    padding: 0;
}

.list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}

.list-checked li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-yellow);
    font-weight: 900;
    font-size: 18px;
}

/* list styles end */

/* 404 page start */
.error-container {
    text-align: center;
    padding: 60px 0;
}

.error-container h1 {
    font-size: 200px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.error-container h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 20px;
    margin-bottom: 60px;
}

/* 404 page end */

/* Campaign announcement */
.campaign-announcement {
    padding: 30px 45px 38px;
    background-color: var(--theme-white);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: 1200px;
    margin: 80px auto 0;
    position: relative;
}

.campaign-announcement::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}

.campaign-announcement .campaign-info {
    position: relative;
    z-index: 1;
}

.campaign-announcement h2 {
    font-size: 38px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.campaign-announcement p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 40px;
}

.campaign-announcement .theme-yellow-btn {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Campaign announcement end */



/* Video section start */
.hero-video-wrapper {
    position: relative;
    padding: 0 5px;
}

.hero-video {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Video section end */


/* achivements-section */
.achivements-section {
    padding: 30px 0;
}

.achivements-section .ach-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.achivements-section .ach-img-container img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.achivements-section .ach-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.achivements-section .ach-text-container p {
    margin-bottom: 0;
}

.achivements-section .ach-text-container a {
    font-weight: 600;
}

/* achivements-section end */

/* CTA-section */
.cta-section {
    padding: 0;
    background: linear-gradient(90deg, var(--theme-yellow) 50%, var(--theme-green) 50%);
}

.cta-section .cta-text-container {
    padding: 30px 20px;
    text-align: center;
}

.cta-section .cta-text-container h2 {
    font-size: 22px;
    font-weight: 900;
}

.cta-section .cta-text-container p {
    margin-bottom: 30px;
}

/* CTA-section end */


/* Why choose section */
.why-choose-section .image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transform: rotateY(180deg);
}

/* Why choose section end */


/* gallery section */
.gallery-section {
    padding: 0 0 30px;
}

.gallery-container .gallery-slider-1,
.gallery-container .gallery-slider-2 {
    margin-top: 20px;
    padding: 0 15px;
}

.gallery-container .gallery-slider-1 .swiper-slide img,
.gallery-container .gallery-slider-2 .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* gallery section end */

/* national park section */
section.national-park-menu-page {
    padding: 90px 0;
}

.national-park-slider {
    margin: 30px 0 40px;
}

.national-park-card {
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    padding: 20px;
}

.national-park-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.national-park-card .np-card-body {
    text-align: center;
}

.national-park-card .np-card-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 800;
}

.national-park-card .np-card-body h3 a {
    color: var(--theme-green);
}

.national-park-card .np-card-body h3 a:hover {
    color: var(--theme-yellow);
}

.national-park-card .np-card-body p:last-child {
    margin-bottom: 0;
}

.national-park-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-yellow);
}

.national-park-slider .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

/* national park section end */


/* CTA form section */
.cta-form-section h2 {
    font-size: 26px;
}

.cta-form-section .row .col-lg-5 {
    border-right: 2px solid var(--theme-yellow);
}

.cta-form-section .form-container {
    width: 80%;
}

.cta-form-section .cta-info-container .cta-info-btns {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.cta-form-section .cta-info-container .cta-info-btns .page-menu-btn {
    padding: 14px;
    background-color: transparent;
    border: 1px solid var(--theme-white);
    color: var(--theme-white);
    border-radius: 5px;
    font-weight: 600;
    line-height: 1em;
}

.cta-form-section .cta-info-container .cta-info-btns .theme-yellow-btn {
    font-weight: 600;
    border: 1px solid var(--theme-white);
    padding: 14px;
    border-radius: 5px;
}

.cta-form-section .cta-info-container .cta-info-btns .page-menu-btn:hover {
    color: var(--theme-yellow);
    border-color: var(--theme-yellow);
}

/* CTA form section end */


/* Testimonial Section */
.testimonial-section .testimonial-slider {
    margin-top: 30px;
    padding: 0 40px;
}

.testimonial-section .testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-section .testimonial-slider .testimonial-card {
    width: 100%;
    padding: 30px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-section .testimonial-slider .testimonial-card .testi-review {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    max-height: calc(1.2em * 5);
    margin-bottom: 0px;
    transition: max-height 0.3s ease;
}

.testimonial-section .testimonial-slider .testimonial-card .testi-review.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    transition: max-height 0.3s ease;
}

.testimonial-section .testimonial-slider .testimonial-card .read-more-btn {
    padding: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--theme-yellow);
    text-decoration: underline;
    background-color: transparent;
}

.testimonial-section .testimonial-slider .testimonial-card p:last-child {
    margin-bottom: 0;
}

.testimonial-section .testimonial-slider .testi-btn-next,
.testimonial-section .testimonial-slider .testi-btn-prev {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.testimonial-section .testimonial-slider .testi-btn-next {
    right: 20px;
    z-index: 1;
}

.testimonial-section .testimonial-slider .testi-btn-prev {
    left: 20px;
    z-index: 1;
}

.testimonial-section .testimonial-slider .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

.testimonial-section .testimonial-slider .swiper-pagination-bullet-active {
    background-color: var(--theme-yellow);
}


/* Packages Section */
.package-section .title-section {
    margin-bottom: 40px;
}

.package-section .package-card-container {
    margin-bottom: 40px;
}

.package-section.package-menu-page .package-card-container {
    margin: 25px 0;
}

.package-section .package-card {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    position: relative;
}

.package-section .package-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.package-section .package-card .package-img {
    position: relative;
}

.package-section .package-card .package-img .feature-tag {
    position: absolute;
    top: 15px;
    left: 0px;
    background-color: var(--theme-green);
    color: var(--theme-white);
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.package-section .package-card .package-img .rating-tag i {
    font-size: 17px;
}

.package-section .package-card .package-img .rating-tag span {
    margin-left: 8px;
}

.package-section .package-card .package-img .rating-tag {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background-color: var(--theme-white);
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.package-section .package-card .package-body h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 800;
}

.package-section .package-card .package-body h4 a {
    color: var(--theme-green);
}

.package-section .package-card .package-body h4 a:hover {
    color: var(--theme-yellow);
}

.package-section .package-card .package-facility {
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.package-section .package-card .package-facility .col-6:nth-child(1) {
    border-right: 2px solid var(--theme-green);
}

.package-section .package-card .package-facility .col-6:nth-child(2) p {
    padding-left: 10px;
}

.package-section .package-card .package-facility .facility-item {
    margin-bottom: 0;
}

.package-section .package-card .package-facility .facility-item i {
    color: var(--theme-yellow);
    font-size: 22px;
    margin-right: 6px;
}

.package-section .package-card .p-card-bottom {
    border: 1px solid #cacaca;
    padding: 10px;
    border-radius: 8px;
}

.package-section .package-card .p-card-bottom .p-card-price {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 6px;
}

.package-section .package-card .p-card-bottom .p-card-price p {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2em;
    width: 100%;
}


.package-section .package-card .p-card-bottom .p-card-price p:nth-child(1) {
    border-right: 1px solid #cacaca;
}

.package-section .package-card .p-card-bottom .p-card-price .price-request {
    padding: 19px 15px 24px;
    border-bottom: 1px solid #cacaca;
    border-right-width: 0 !important;
    margin-bottom: 12px;
    font-size: 18px;
}

.package-section .package-card .p-card-bottom .p-card-price p span {
    font-size: 16px;
    font-weight: 400;
}

.package-section .package-card .p-card-bottom .p-card-price-note {
    position: relative;
    margin-bottom: 8px;
}

.package-section .package-card .p-card-bottom .p-card-price-note span {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px;
    position: relative;
    background-color: var(--theme-white);
    padding: 0 10px;
    z-index: 1;
}

.package-section .package-card .p-card-bottom .p-card-price-note::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #cacaca;
}

.package-section .package-card .p-card-bottom .btn-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}


/* Blog Section */
.blog-section .title-section {
    margin-bottom: 40px;
}

.blog-section .blog-card,
.blog-section .blog-side-item {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 2px;
    overflow: hidden;
    position: relative;
}

.blog-section .blog-side-item {
    margin-bottom: 20px;
}

.blog-section .blog-card .blog-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.blog-section .blog-side-item .blog-img img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.blog-section .blog-card-body {
    padding-top: 20px;
}

.blog-section .blog-card-body .blog-date,
.blog-section .blog-side-item .blog-date {
    font-size: 16px;
    margin-bottom: 10px;
}

.blog-section .blog-card-body .blog-date i,
.blog-section .blog-side-item .blog-date i {
    margin-right: 10px;
}

.blog-section .blog-card .blog-card-body h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-section .blog-side-item .blog-side-body h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-section .blog-card .blog-card-body .blog-content,
.blog-section .blog-side-item .blog-side-body .blog-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    max-height: calc(1.2em * 5);
    margin-bottom: 10px;
    font-size: 15px;
}

.blog-section .blog-card .blog-card-body .read-more-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-yellow);
}

.blog-section .blog-card .blog-card-body .read-more-btn:hover {
    color: var(--theme-green);
}



/* About Us Page Specific Styles */


/* About Intro Section */
.about-intro-section .img-wrapper img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
}

.about-intro-section .intro-content {
    padding-left: 30px;
}

.about-intro-section h3 {
    color: var(--theme-green);
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-intro-section .raps-eagle-icon {
    float: right;
    width: 50px;
    margin-bottom: 20px;
}

/* Team Section */
.about-team-section {
    background-color: var(--bg-light-yellow-2);
}

.about-team-section .team-card {
    background: var(--theme-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-bottom: 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.about-team-section .team-card:hover {
    transform: translateY(-5px);
}

.about-team-section .team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}

.about-team-section .team-card h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--theme-green);
}

.about-team-section .team-card p {
    color: var(--theme-yellow);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* CTA Strip Section */
.cta-strip-section {
    background-color: var(--theme-green);
    padding: 60px 0;
}

.cta-strip-content h2 {
    color: var(--theme-white);
    margin-bottom: 10px;
    font-size: 32px;
}

.cta-strip-content p {
    color: var(--theme-white);
    margin-bottom: 0;
    font-size: 18px;
    opacity: 0.9;
}

.cta-strip-btn-container {
    text-align: right;
}

.cta-strip-btn {
    display: inline-block;
    background: var(--theme-white);
    color: var(--theme-green);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-strip-btn:hover {
    background: var(--theme-yellow);
    color: var(--theme-white);
}

/* About Us Page Specific Styles */


/* Team Page Specific Styles */
.team-section .team-card {
    background-color: var(--theme-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.team-section .team-card:hover {
    transform: translateY(-5px);
}

.team-section .team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

.team-section .team-card .team-card-content {
    padding: 20px;
}

.team-section .team-card .team-card-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--theme-green);
}

.team-section .team-card .team-card-content p.designation {
    color: var(--theme-yellow);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.team-section .team-card .team-card-content p.description {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 1px;
}


/* FAQ page */
.faq-container .faq-accordion {
    width: 70%;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
}

.faq-accordion .accordion-button {
    color: var(--theme-green);
    font-weight: 700;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--theme-yellow);
}

.faq-accordion .accordion-button:hover {
    background-color: var(--theme-white);
    color: var(--theme-green);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--theme-white);
    color: var(--theme-green);
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    font-family: 'remixicon' !important;
    content: "\ea4d";
    font-size: 24px;
}

.faq-accordion .accordion-body {
    padding: 20px;
}

/* FAQ page end */


/* workshop page */
.cw-data-container,
.workshop-content-container {
    margin-top: 45px;
}

.learning-container {
    margin-top: 55px;
}

.learning-container .learning-item {
    display: flex;
    gap: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.learning-container .learning-item:hover {
    transform: translateY(-5px);
}

.learning-container .main-learn-info {
    padding: 20px;
}

.learning-container .learning-item .number {
    width: 60px;
    height: 60px;
    background-color: var(--theme-yellow);
    color: var(--theme-white);
    font-size: 28px;
    font-weight: 700;
    padding: 17px 17px;
    line-height: 0.8em;
    margin-bottom: 0;
    border-radius: 0 0 10px 0;
}

.equip-section p {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 30px;
}

/* workshop page end */



/* Blog Menu page */
.blog-menu-container .blog-menu-item {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.blog-menu-container .blog-menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-menu-container .blog-menu-item .blog-img-container {
    position: relative;
}

.blog-menu-container .blog-menu-item .blog-img-container .blog-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--theme-green);
    color: var(--theme-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
}

.blog-menu-container .blog-menu-item .blog-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-menu-container .blog-menu-item .blog-info p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
}

.blog-menu-container .blog-menu-item .blog-info .theme-yellow-btn {
    font-size: 15px;
    display: inline-block;
}

/* Blog Menu page end */

/* Blog Detail page */
.blog-container .blog-detail-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

.blog-img-container {
    position: relative;
}

.blog-img-container .blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--theme-green);
    color: var(--theme-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
}

.blog-img-container .blog-date i {
    margin-right: 5px;
}

.blog-bottom-menu {
    margin-top: 28px;
    border-top: 1px solid var(--theme-green);
    padding-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.blog-bottom-menu .blog-nav-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-bottom-menu .blog-nav-container .blog-nav-item a {
    padding: 4px 8px;
    border-radius: 3px;
    background-color: var(--theme-yellow);
    color: var(--theme-white);
    font-size: 15px;
    display: inline-block;
}

.blog-bottom-menu .blog-share {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-bottom-menu .blog-share P {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.blog-bottom-menu .blog-share ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.blog-bottom-menu .blog-share ul li a i {
    color: var(--theme-yellow);
    font-size: 28px;
}

.sidebar-item-title {
    font-size: 20px;
    position: relative;
    margin-bottom: 40px;
}

.sidebar-item-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 60px;
    background-color: var(--theme-yellow);
}

.recent-posts.featured-packages {
    margin-top: 40px;
}

.recent-posts {
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: var(--theme-white);
}

.recent-posts .recent-posts-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.recent-posts .recent-posts-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-posts .recent-posts-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.recent-posts .recent-posts-item h5 {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
}

.recent-posts .recent-posts-item h5 a {
    color: var(--font-black);
}

.recent-posts .recent-posts-item h5 a:hover {
    color: var(--theme-green);
}

.recent-posts .blog-date {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme-yellow);
}

.side-ads {
    margin-top: 40px;
}

.side-ads img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Blog Detail page end */

/* Information page */
.info-section .info-items {
    padding: 14px;
    background-color: var(--theme-white);
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.news-section .info-items {
    margin-bottom: 25px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

.info-section .info-items img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.news-section .info-items img {
    height: 300px;
}

.info-section .info-items h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.info-section .info-items p {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 22px;
}

.info-section .info-items .info-btn {
    text-align: right;
}

.info-section .info-items .theme-yellow-btn {
    font-size: 16px;
    display: inline-block;
    text-align: center;
}

/* Information page end */


/* contact page */
.contact-page-header {
    background: url('../images/header/contact-bg-05.jpg') no-repeat center center/cover;
    height: 450px;
    position: relative;
    margin-bottom: 0;
    padding: 60px 0;
}

.contact-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.contact-page-header h1 {
    color: var(--theme-white);
    position: relative;
    z-index: 1;
    font-size: 40px;
    line-height: 1.5em;
    letter-spacing: 2px;
    max-width: 400px;
}

.contact-page-header .contact-info-container {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.contact-page-header .contact-info-container p {
    font-size: 20px;
}

.contact-section .contact-info {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.contact-section .contact-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--theme-green);
}

.contact-section .contact-info i {
    font-size: 28px;
    color: var(--theme-yellow);
}

.contact-section .contact-info p {
    line-height: 1.4em;
    margin-bottom: 0;
}

.contact-section .contact-info:last-child p {
    margin-bottom: 8px;
}

.form-map-section {
    margin-top: 60px;
    padding: 30px;
    overflow: hidden;
    border-radius: 5px;

}

.form-map-section .fm-card {
    padding: 20px;
    background-color: var(--theme-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

.form-map-section .fm-card .why-img {
    height: auto;
    width: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -40px;
    left: 0;
}

.form-map-section iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.form-map-section .why-choose-section {
    margin-top: 30px;
}

.social-media-icons {
    margin-top: 30px;
    display: flex;
}

.social-media-icons a {
    color: var(--theme-yellow);
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--theme-yellow);
}

.social-media-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--theme-green);
}

/* contact page end */



/* Footer Section */
footer {
    position: relative;
}

footer p,
footer a {
    color: var(--theme-white);
}

footer a:hover {
    color: var(--theme-yellow);
}

footer {
    padding-top: 70px;
    padding-bottom: 20px;
    color: var(--theme-white);
}

footer .container-fluid {
    padding: 0 80px;
}

footer .container-fluid>.row {
    gap: 30px;
}

footer .footer-logo img {
    height: 70px;
    object-fit: contain;
}

footer .footer-logo-desc {
    margin-top: 30px;
}

footer .footer-logo-desc h4 {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4em;
}

footer .contact-data-container .contact-data-item {
    margin-bottom: 16px;
    font-weight: 600;
}

footer .contact-data-container .contact-data-item i {
    margin-right: 6px;
    font-size: 22px;
    line-height: 1.3em;
}

footer .footer-social {
    margin-top: 20px;
}

footer .footer-social a {
    color: var(--theme-yellow);
    font-size: 28px;
    margin-right: 15px;
    transition: 0.3s;
}

footer .footer-social a:hover {
    color: var(--theme-white);
}

footer .footer-links-container {
    margin-bottom: 30px;
}

footer .footer-links,
footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-links li,
footer .footer-contact li {
    margin-bottom: 12px;
}

footer .footer-links li a,
footer .footer-contact li a {
    color: #fff;
    transition: 0.3s;
    font-size: 18px;
}

footer .footer-links li a:hover,
footer .footer-contact li a:hover {
    color: var(--theme-yellow);
}

footer .footer-contact li i {
    margin-right: 10px;
}

footer .footer-img-container-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

footer .footer-img-container-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    padding: 8px;
}

footer .footer-notice {
    width: 80%;
    margin: auto;
    margin-top: 70px;
}

footer .footer-bottom .container {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 2px solid var(--theme-yellow);
}

footer .footer-bottom a:hover {
    color: var(--theme-yellow);
}

.footer-btn-container {
    position: relative;
}

.footer-btn-container button i,
.footer-btn-container a i {
    font-size: 20px;
    margin-right: 10px;
}

.footer-btn-container .back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}

.footer-btn-container .back-top-btn i {
    margin-right: 0;
}

.footer-btn-container .tour-dates-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}


.footer-btn-container .tour-dates-btn:hover {
    color: var(--theme-white);
}

.footer-btn-container .whatsapp-chat-btn {
    position: fixed;
    bottom: 140px;
    right: 20px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
    background-color: #25D366;
    /* WhatsApp Green */
    color: #fff;
    padding: 0 15px;
    /* Add padding for text */
    text-decoration: none;
    /* Ensure link underline is gone */
    font-weight: 600;
}

.footer-btn-container .whatsapp-chat-btn:hover {
    background-color: #128C7E;
    color: #fff;
}

.footer-btn-container .whatsapp-chat-btn i {
    margin-right: 8px;
    font-size: 24px;
}







/* Package Detail Page Specific Styles */

/* Hero Section */
.package-hero-section .hero-main-img {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.package-hero-section .hero-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.package-hero-section .hero-main-img:hover img {
    transform: scale(1.05);
}

.package-hero-section .hero-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.package-hero-section .hero-text-overlay::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -22px;
    width: 110%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: -1;
    padding: 100px;
}

.package-hero-section .hero-text-overlay h1 {
    color: #fff;
    font-size: 48px;
    margin-top: 15px;
    font-weight: 800;
}

.package-hero-section .hero-text-overlay .days-badge {
    background-color: var(--theme-yellow);
    color: var(--theme-white);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.package-hero-section .hero-side-imgs {
    height: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-hero-section .hero-side-img-top,
.package-hero-section .hero-side-img-bottom {
    height: 50%;
    position: relative;
    overflow: hidden;
}

.package-hero-section .hero-side-img-top img,
.package-hero-section .hero-side-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.package-hero-section .view-gallery-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--theme-green);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-hero-section .view-gallery-btn:hover {
    background: var(--theme-yellow);
    color: #fff;
}

/* Quick Info Bar */
.quick-info-bar {
    padding: 25px 0;
    border-bottom: 1px solid #e1e1e1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.quick-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
    padding: 0 20px;
    border-right: 1px solid #eee;
}

.quick-info-bar .info-item:last-child {
    border-right: none;
}

/* Response for smaller screens */
@media (max-width: 991px) {
    .quick-info-bar .info-item {
        border-right: none;
        margin-bottom: 20px;
        justify-content: flex-start;
    }
}

.quick-info-bar .info-item i {
    font-size: 36px;
    color: var(--theme-yellow);
    font-weight: 400;
    /* Regular weight for outline icons usually */
}

.quick-info-bar .info-item .info-content {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.quick-info-bar .info-item .label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.quick-info-bar .info-item .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-green);
}

/* Tabs Navigation */
.tour-tabs-nav-container {
    top: 0;
    z-index: 99;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.tour-tabs-nav .nav-link {
    color: var(--theme-green);
    font-weight: 700;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 18px;
    background: transparent;
    border: 1px solid transparent;
    margin-right: 10px;
    transition: all 0.3s;
    letter-spacing: 1.2px;
}

.tour-tabs-nav .nav-link:hover {
    background-color: rgba(244, 153, 26, 0.1);
    /* Light yellow tint */
    color: var(--theme-yellow);
}

.tour-tabs-nav .nav-link.active {
    background-color: var(--theme-yellow);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(244, 153, 26, 0.3);
}

/* Tour Content General */
.tour-tab-content h2 {
    font-size: 28px;
    color: var(--theme-green);
    border-left: 5px solid var(--theme-yellow);
    padding-left: 15px;
}

.tour-price-box {
    border: 2px solid var(--theme-yellow);
    background-color: #fffcf5;
}

/* Itinerary Timeline */
.itinerary-timeline {
    padding-top: 20px;
}

.itinerary-timeline .timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.itinerary-timeline .day-badge {
    background: var(--theme-green);
    color: #fff;
    padding: 10px;
    height: 70px;
    width: 70px;
    min-width: 70px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.itinerary-timeline .timeline-content h4 {
    color: var(--theme-green);
    margin-bottom: 10px;
    font-size: 20px;
}

.itinerary-timeline .timeline-content p {
    color: #555;
    margin-bottom: 0;
}

/* Stay Table */
.stay-table {
    border: 1px solid #eee;
}

.stay-table thead {
    background-color: var(--bg-light-yellow-2);
}

.stay-table th {
    color: var(--theme-green);
    font-weight: 700;
    border-bottom: 2px solid var(--theme-yellow);
    padding: 15px;
}

.stay-table td {
    padding: 15px;
    color: #555;
    vertical-align: middle;
}

/* Inclusions/Exclusions */
.list-inclusions li,
.list-exclusions li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.list-inclusions li i,
.list-exclusions li i {
    font-size: 20px;
    margin-top: 2px;
}

.text-green {
    color: var(--theme-green) !important;
}

.text-danger {
    color: #d9534f !important;
}

/* Sidebar Widgets */
.sidebar-widget {
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    font-size: 22px;
    color: var(--theme-green);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--theme-yellow);
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-widget .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 5px;
    font-size: 15px;
}

.sidebar-widget .form-control:focus {
    border-color: var(--theme-yellow);
    box-shadow: 0 0 0 3px rgba(244, 153, 26, 0.1);
}

.mini-package-card {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.mini-package-card:last-of-type {
    border-bottom: none;
}

.mini-package-card .mini-img img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.mini-package-card h5 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.mini-package-card h5 a:hover {
    color: var(--theme-yellow) !important;
}

.mini-package-card small {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
}

/* =========================================
   NEW ADDTIONS FOR PACKAGE DETAIL PAGE
   ========================================= */

/* --- Trip Header (Main Content) --- */
.trip-header-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #666;
}

.trip-header-meta .package-details-grid {
    display: flex;
    gap: 15px;
}

.trip-header-meta .pd-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    width: fit-content;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
}

.trip-header-meta .pd-item i {
    font-size: 30px;
    margin-right: 10px;
    color: var(--theme-green);
}

.trip-header-meta .pd-item-content .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--font-black);
}

.trip-header-meta .pd-item-content .label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.trip-header-meta .meta-divider {
    color: #ddd;
}

.trip-header-meta strong {
    color: var(--font-black);
}

.trip-header-meta .rating span {
    color: var(--theme-yellow);
    font-weight: 700;
}

.trip-duration-badge {
    background-color: var(--theme-green);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.trip-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--font-black);
    /* Or Keep Green? Image seems black/dark */
}

/* --- Highlights Box --- */
.highlights-box {
    background-color: var(--bg-light-yellow-2);
    border-radius: 10px;
    margin-top: 40px;
}

.highlights-box h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.highlights-box .list-checked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns like image */
    gap: 10px 30px;
}

/* --- Package Details Sidebar Widget --- */
.package-details-widget {
    background-color: var(--bg-light-yellow-2);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.package-details-widget h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.package-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pd-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd-item i,
.pd-item img {
    font-size: 24px;
    color: var(--theme-yellow);
    width: 24px;
    /* Fix width for alignment */
    text-align: center;
}

.pd-item-content {
    display: flex;
    flex-direction: column;
}

.pd-item-content .value {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    line-height: 1.2;
}

.pd-item-content .label {
    font-size: 13px;
    color: #777;
    line-height: 1.2;
    margin-bottom: 4px;
}

/* --- Pricing Card --- */
.pricing-card {
    background-color: var(--theme-green);
    color: var(--theme-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: var(--theme-white);
    font-size: 24px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.pricing-card .pricing-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    display: block;
}

.pricing-block {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.pricing-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-block .price-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--theme-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-block .price-amount {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-block .price-per-person {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 5px;
}

/* --- Itinerary Accordion (Bootstrap Customization) --- */
.tour-accordion .accordion-item {
    background-color: var(--theme-white);
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tour-accordion .accordion-header {
    margin-bottom: 0;
}

.tour-accordion .accordion-button {
    background-color: var(--theme-white);
    color: var(--theme-green);
    /* Or Black based on image? Image shows Black/Dark text "Day 1 :" */
    color: var(--font-black);
    font-weight: 700;
    font-size: 18px;
    padding: 20px 25px;
    box-shadow: none !important;
    /* Remove bootstrap focus shadow */
    border-radius: 10px !important;
    /* Ensure rounded always */
}

/* Open state styling */
.tour-accordion .accordion-button:not(.collapsed) {
    background-color: var(--theme-white);
    /* Keep white as per image */
    color: var(--font-black);
    box-shadow: none;
}

.tour-accordion .accordion-button::after {
    background-image: none;
    /* Remove default bootstrap chevron */
    content: '\ea4e';
    /* remixicon arrow-down-s-line */
    font-family: 'remixicon';
    font-size: 24px;
    color: #444;
    /* Dark arrow */
    height: auto;
    width: auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
}

.tour-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.tour-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--font-black);
    background-color: var(--theme-white);
    border-top: none;
}

/* Remove the icon I previously added */
.tour-accordion .accordion-button .day-label {
    margin-right: 15px;
    color: var(--font-black);
    /* Image shows "Day 1 :" in bold dark, no yellow label */
    font-weight: 800;
}

/* --- Sidebar Widget Titles --- */
.sidebar-widget h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: var(--theme-green);
    /* "Book This Tour" is green in screenshot */
    font-weight: 700;
    font-size: 22px;
}

.sidebar-widget h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    background-color: var(--theme-yellow);
}

/* --- Terms Section --- */
.terms-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.terms-section h3 {
    border-left: 4px solid var(--theme-yellow);
    padding-left: 15px;
    margin-bottom: 20px;
}

.booking-conditions-container {
    margin-top: 40px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light-yellow-1);
    border-top: 5px solid var(--theme-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Visitor Popup Styles */
.visitor-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visitor-popup.show {
    opacity: 1;
}

.popup-content {
    background-color: var(--theme-white);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.5s ease;
}

.visitor-popup.show .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--font-black);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--theme-yellow);
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.popup-content form .form-group {
    margin-bottom: 15px;
}

.popup-content form input {
    margin-bottom: 0;
}

.w-100 {
    width: 100%;
}