:root {
    --primary: #755727;
    --warning: #ffc107;
    --dark: #212529;
    --light: #f8f9fa;
    --accent: #e67e22;
    --gray: #6c757d;
    --border: #dee2e6;
    --navbar-bg: #a77c37;
    --star-color: #d4a017
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: #333;
    line-height: 1.6
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1140px
}

.navbar {
    background-color: var(--navbar-bg);
    box-shadow: 0 2px 5px rgb(0 0 0 / .1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    text-transform: uppercase;
    z-index: 1000;
    display: flex;
    align-items: center
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.navbar-brand img {
    height: 80px;
    transition: transform 0.3s ease
}

.navbar-brand img:hover {
    transform: scale(1.05)
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-link {
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    padding: .5rem 1rem;
    transition: color 0.3s ease
}

.nav-link:hover, .nav-link.active {
    text-decoration: underline;
    color: #fff
}

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end
}

.navbar-toggler {
    border: none;
    background: none;
    font-size: 1.25rem;
    padding: .25rem .75rem;
    display: none;
    color: #FFF
}

.navbar-toggler-icon {
    background-color: #FFF;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block
    }

    .navbar-collapse {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--navbar-bg)
    }

    .navbar-collapse.show {
        display: block
    }

    .navbar-nav {
        flex-direction: column;
        padding: 1rem
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row
    }
}

a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px
}

.col-md-4, .col-md-6, .col-sm-6, .col-md-12, .col-sm-3, .col-12, .col-lg-4 {
    position: relative;
    width: 100%;
    padding: 0 8px
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%
    }
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width: 767px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.btn {
    display: inline-block;
    padding: .5rem 0;
    text-align: center;
    text-decoration: none;
    border-radius: .25rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 140px;
    line-height: 1.5;
    box-sizing: border-box
}

.btn-primary {
    background-color: var(--primary);
    color: #FFF;
    border: 1px solid var(--primary)
}

.btn-primary:hover {
    background-color: #5e451e;
    border-color: #5e451e
}

.btn-outline-primary {
    background-color: #fff0;
    color: var(--primary);
    border: 1px solid var(--primary)
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #FFF
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    width: auto
}

.form-control, .form-select {
    width: 100%;
    padding: .375rem .75rem;
    border: 1px solid var(--border);
    border-radius: .25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgb(117 87 39 / .25)
}

.form-label {
    margin-bottom: .5rem;
    font-weight: 500
}

.invalid-feedback {
    color: green;
    font-size: .875rem;
    display: none
}

.form-control:invalid[required]:focus, .form-control:invalid[required]:not(:placeholder-shown), .form-select:invalid[required]:focus, .form-select:invalid[required]:not(:placeholder-shown) {
    border-color: #dc3545
}

.form-control:invalid[required]:focus + .invalid-feedback, .form-control:invalid[required]:not(:placeholder-shown) + .invalid-feedback, .form-select:invalid[required]:focus + .invalid-feedback, .form-select:invalid[required]:not(:placeholder-shown) + .invalid-feedback {
    display: block
}

.alert {
    padding: 1rem;
    border-radius: .25rem;
    margin-bottom: 1rem;
    display: none
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb
}

.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 1.5rem
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .5);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #FFF;
    padding: 2rem;
    max-width: 1140px;
    width: 100%
}

.hero-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFF
}

.hero-content .post-info {
    font-size: 1rem;
    margin-bottom: 1rem
}

.hero-content .post-info span {
    margin-right: 1rem
}

.hero-content .breadcrumb {
    background-color: rgb(255 255 255 / .9);
    justify-content: center
}

@media (max-width: 768px) {
    .hero-content h3 {
        font-size: 1.8rem
    }

    .hero-content .post-info {
        font-size: .9rem
    }
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--border);
    margin-bottom: 1rem
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgb(0 0 0 / .15)
}

.card-img-top {
    height: 200px;
    object-fit: cover
}

.card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.card-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: .5rem
}

.card-text {
    font-size: .9rem;
    color: #333;
    margin-bottom: 1rem;
    flex-grow: 1
}

.explore-tours .card {
    height: 400px
}

.explore-tours .card-body {
    height: 150px
}

.mt-4 {
    margin-top: 1.5rem
}

.mb-4 {
    margin-bottom: 1.5rem
}

.py-5 {
    padding: 3rem 0
}

h2, h3, h4 {
    color: var(--primary)
}

.breadcrumb {
    background-color: #f8f9fa;
    padding: .75rem 1rem;
    border-radius: .25rem;
    margin-bottom: 1rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

.breadcrumb-item {
    display: flex;
    align-items: center
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 .5rem;
    color: var(--gray)
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none
}

.breadcrumb-item a:hover {
    text-decoration: underline
}

.breadcrumb-item.active {
    color: #000
}

.page-footer {
    background-color: var(--primary);
    color: #FFF;
    padding: 40px 0 0
}

.page-footer a {
    color: #FFF;
    text-decoration: none
}

.page-footer a:hover {
    color: #C4B99C;
    text-decoration: underline
}

.page-footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFF
}

.footer-copyright {
    text-align: center;
    padding: 10px;
    background-color: var(--navbar-bg);
    color: #fff;
    margin-top: 30px
}

.list-unstyled {
    list-style: none;
    padding: 0
}

.list-unstyled li {
    margin-bottom: .5rem
}

.text-center {
    text-align: center
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 100%
    }

    .card-img-top {
        height: 150px
    }

    .card-title {
        font-size: 1rem
    }

    .card-text {
        font-size: .85rem
    }

    .btn {
        width: 120px;
        padding: .4rem 0;
        font-size: .9rem
    }

    .explore-tours .card {
        height: 300px
    }

    .explore-tours .card-body {
        height: 150px
    }
}

.tour-highlights ul {
    list-style: none;
    padding: 0
}

.tour-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem
}

.tour-highlights li::before {
    content: "✔";
    color: var(--primary);
    margin-right: .5rem;
    font-weight: 700
}

.review-card {
    padding: 1rem;
    text-align: center
}

.review-card .stars {
    color: var(--star-color);
    margin-bottom: .5rem
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease
}

.carousel-item {
    flex: 0 0 100%;
    padding: 0 1rem
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0 0 0 / .5);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: .5rem;
    cursor: pointer
}

.carousel-control.prev {
    left: 0
}

.carousel-control.next {
    right: 0
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: .25rem;
    margin-bottom: .5rem;
    overflow: hidden
}

.accordion-header {
    background: #fff;
    padding: 0
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.accordion-button::after {
    content: "▼";
    font-size: .8rem;
    transition: transform 0.3s ease
}

.accordion-button.active::after {
    transform: rotate(180deg)
}

.accordion-content {
    display: none;
    padding: 1rem;
    font-size: .9rem;
    background: #f8f9fa
}

.accordion-content.active {
    display: block
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: .9rem
}

.pricing-table th, .pricing-table td {
    border: 1px solid var(--border);
    padding: .5rem;
    text-align: center;
    word-wrap: break-word
}

.pricing-table th {
    background-color: var(--primary);
    color: #FFF;
    font-size: .85rem
}

.pricing-table td {
    font-size: .8rem
}

@media (max-width: 767px) {
    .pricing-table {
        display: block;
        overflow-x: hidden
    }

    .pricing-table thead {
        display: none
    }

    .pricing-table tbody, .pricing-table tr {
        display: block;
        width: 100%
    }

    .pricing-table td {
        display: flex;
        align-items: center;
        text-align: left;
        padding: .5rem 1rem;
        position: relative;
        font-size: .85rem;
        border: none;
        border-bottom: 1px solid var(--border)
    }

    .pricing-table td:before {
        content: attr(data-label);
        font-weight: 700;
        width: 50%;
        padding-right: .5rem;
        color: var(--primary);
        flex-shrink: 0
    }

    .pricing-table td:last-child {
        border-bottom: 2px solid var(--border);
        margin-bottom: 1rem
    }
}

@media (min-width: 768px) {
    .pricing-table {
        table-layout: auto
    }

    .pricing-table th, .pricing-table td {
        width: 12%;
        padding: .4rem;
        font-size: .8rem
    }

    .pricing-table th:first-child, .pricing-table td:first-child {
        width: 16%
    }
}

.booking-form-section {
    display: none;
    background: #fff;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 4px 15px rgb(0 0 0 / .1);
    margin-bottom: 2rem
}

.booking-form-section.show {
    display: block
}

@media (max-width: 768px) {
    .booking-form-section {
        padding: 1rem
    }
}

.img-fluid {
    max-width: 100%;
    height: auto
}

@media (min-width: 992px) {
    .page-footer .row {
        flex-wrap: nowrap
    }

    .page-footer .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .page-footer .mb-4 {
        margin-bottom: 0
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-footer .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width: 767px) {
    .page-footer .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center
    }
}

svg {
    display: inline-block;
    vertical-align: middle;
}

#included ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path d="M4 12 l5 5 l10 -10" stroke="green" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat
}

#excluded ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path d="M6 6 l12 12 M18 6 l-12 12" stroke="red" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat
}

#included ul li, #excluded ul li {
    display: flex;
    align-items: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .breadcrumb-item.active {
        display: block;
    }

    .breadcrumb {
        font-size: xx-small;
    }
}

.img-thumbnail {
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.trek-itinerary-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
}

.trek-itinerary-table th, .trek-itinerary-table td {
    border: 1px solid #ddd !important;
    padding: 8px !important;
    text-align: left !important;
    vertical-align: top !important;
}

.trek-itinerary-table th {
    background-color: #f99300 !important;
    color: #fff !important;
    text-align: center !important;
}

.trek-itinerary-table td {
    background-color: #fff !important;
    display: table-cell !important;
}

.trek-itinerary-table td:first-child {
    font-weight: bold !important;
    width: 80px !important;
    background-color: #f0f0f0 !important;
}

.trek-itinerary-table thead {
    display: none !important;
}

.trek-itinerary-table tr {
    display: table-row !important;
    border: 1px solid #ddd !important;
}

.trek-itinerary-table tbody tr:nth-child(even) {
    background-color: #f9f9f9 !important;
}

.trek-route-details {
    margin-bottom: 20px !important;
}

.trek-route-details p {
    margin: 5px 0 !important;
}

@media (max-width: 767px) {
    .trek-itinerary-table td:first-child {
        width: 60px !important;
    }

    .trek-itinerary-table td {
        font-size: 12px !important;
    }
}
.hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            will-change: opacity;
        }

        .hero-video.active {
            opacity: 1;
        }.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.whatsapp-float .outer-circle {
    fill: #25D366; /* WhatsApp green for the outer circle */
}

.whatsapp-float .phone-icon {
    fill: #FFFFFF; /* White for the phone icon */
    opacity: 1; /* Ensure phone icon is not transparent */
}