/* ========================================================================
   NAN Adventure Tour | Front-end stylesheet
   ======================================================================== */

/******** Fonts ********/
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Adobe';
    src: url('fonts/Adobe Thai Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* --------------------------------------------------------------------------
   Gallery pages
   Albums and images are paged server-side; images use lazy loading in markup.
   -------------------------------------------------------------------------- */
.nan-gallery-page,
.nan-gallery-detail-page {
    background: #f3eee6;
}

/* --------------------------------------------------------------------------
   Video pages
   Video players are opened on demand in a modal, so video iframes do not slow
   down the home page or the complete video listing.
   -------------------------------------------------------------------------- */
.home-videos-section,
.nan-video-list {
    padding: 22px 0 32px;
    background:
        radial-gradient(circle at 86% 8%, rgba(143, 166, 74, .16), transparent 24rem),
        #f3eee6;
}

.home-videos-heading {
    margin-bottom: 34px;
}

.nan-video-kicker,
.nan-video-heading > span,
.home-video-body > span,
.nan-video-body > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b9225;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}




.nan-video-heading h2 {
    margin: 8px 0 10px;
    color: #4e5934;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
}

.nan-video-heading p {
    margin: 0;
    color: #68735f;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.nan-video-load-more a {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #526a2d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 9px 18px rgba(53, 72, 27, .18);
    transition: background .2s ease, transform .2s ease;
}

.nan-video-load-more a:hover {
    background: #f28d2b;
    color: #fff;
    transform: translateY(-2px);
}

.home-video-card,
.nan-video-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(72, 94, 42, .13);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 13px 30px rgba(41, 56, 26, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Keep the featured home video compact instead of stretching to match two cards. */
.home-videos-layout > .col-lg-6:first-child {
    align-self: flex-start;
}

.home-videos-layout .home-video-card.is-featured {
    height: auto;
}

.home-video-card:hover,
.nan-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(41, 56, 26, .16);
}

.home-video-preview,
.nan-video-preview {
    position: relative;
    display: grid;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #344723;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.home-video-preview::after,
.nan-video-preview::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 36%, rgba(22, 35, 13, .52));
    transition: background .25s ease;
}

.home-video-preview:hover::after,
.nan-video-preview:hover::after {
    background: rgba(39, 65, 17, .52);
}

.home-video-preview img,
.nan-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.home-video-card:hover img,
.nan-video-card:hover img {
    transform: scale(1.06);
}

.home-video-preview.is-empty,
.nan-video-preview.is-empty {
    place-items: center;
    color: #fff;
    font-size: 46px;
}

.home-video-play,
.nan-video-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(101, 136, 39, .94);
    color: #fff;
    font-size: 17px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, background .25s ease;
}

.home-video-preview:hover .home-video-play,
.nan-video-preview:hover .nan-video-play {
    background: #f28d2b;
    transform: translate(-50%, -50%) scale(1.12);
}

.home-video-play i,
.nan-video-play i {
    margin-left: 3px;
}

.home-video-body,
.nan-video-body {
    padding: 17px 20px 20px;
}

.home-video-body h3,
.nan-video-body h3 {
    display: -webkit-box;
    margin: 7px 0 0;
    overflow: hidden;
    color: #2f3d25;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-video-card.is-featured .home-video-body {
    padding: 20px 23px 23px;
}

.home-video-card.is-featured .home-video-body h3 {
    font-size: 18px;
}

.home-video-card.is-featured .home-video-preview { aspect-ratio: 16 / 9.8; }
.home-video-side-grid .home-video-preview { aspect-ratio: 16 / 9.4; }

.home-video-side-grid .home-video-body { padding: 13px 15px 15px; }

.home-video-side-grid .home-video-body > span {
    gap: 5px;
    font-size: 10px;
    letter-spacing: .07em;
}

.home-video-side-grid .home-video-body h3 {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.35;
}

.home-video-side-grid .home-video-play {
    width: 43px;
    height: 43px;
    font-size: 12px;
}

/* Balance the featured video against the two compact rows on large screens. */
@media (min-width: 992px) {
    .home-videos-layout .home-video-card.is-featured .home-video-preview {
        aspect-ratio: 16 / 10.6;
    }

    .home-videos-layout .home-video-side-grid .home-video-preview {
        aspect-ratio: 16 / 8.1;
    }

    .home-videos-layout .home-video-side-grid .home-video-body {
        padding: 11px 14px 12px;
    }
}

.home-video-latest-label {
    position: absolute;
    z-index: 1;
    top: 15px;
    left: 15px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(41, 65, 18, .88);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-video-modal .modal-content,
.nan-video-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #1f2b14;
}

.home-video-modal .modal-header,
.nan-video-modal .modal-header {
    min-height: 62px;
    padding: 14px 20px;
    border: 0;
    background: #fff;
}

.home-video-modal .modal-title,
.nan-video-modal .modal-title {
    overflow: hidden;
    color: #2e3b22;
    font-size: 17px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-video-modal .modal-body,
.nan-video-modal .modal-body {
    padding: 0;
}

.nan-video-page {
    background: #f3eee6;
}

.nan-video-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
    margin: 0 0 42px;
    text-align: left;
}

.nan-video-heading-copy {
    max-width: 690px;
}

.nan-video-card {
    border-radius: 18px;
}

.nan-video-body {
    min-height: 98px;
}

.nan-video-total {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(82, 106, 45, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: #596d36;
    font-size: 13px;
    font-weight: 600;
}

.nan-video-load-more {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.nan-video-load-more span {
    min-width: 22px;
    padding: 1px 7px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .2);
    text-align: center;
}

.nan-video-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 64px 25px;
    border: 1px dashed rgba(77, 98, 42, .35);
    border-radius: 18px;
    color: #63715a;
    text-align: center;
}

.nan-video-empty > i {
    display: block;
    margin-bottom: 17px;
    color: #e33e37;
    font-size: 48px;
}

.nan-video-empty h3 {
    margin: 0 0 9px;
    color: #334426;
    font-size: 25px;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .home-videos-section,
    .nan-video-list {
        padding: 64px 0 74px;
    }
}

@media (max-width: 575.98px) {
    .home-videos-section,
    .nan-video-list {
        padding: 48px 0 58px;
    }

    .home-videos-heading {
        margin-bottom: 28px;
    }

    .nan-video-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .nan-video-heading h2 {
        font-size: 35px;
    }

    .nan-video-heading p {
        font-size: 15px;
    }

    .home-video-card.is-featured .home-video-preview { aspect-ratio: 16 / 10; }

    .nan-video-total {
        width: 100%;
        justify-content: center;
    }
}

.nan-gallery-albums,
.nan-gallery-detail,
.nan-gallery-related {
    padding: 78px 0 92px;
}

.nan-gallery-detail {
    background:
        radial-gradient(circle at 8% 4%, rgba(125, 151, 60, .12), transparent 28rem),
        #f7f4ed;
}

.nan-gallery-related {
    padding-top: 68px;
    background: #ebe6da;
}

.nan-gallery-heading {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.nan-gallery-heading > span,
.nan-gallery-detail-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #66822b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.nan-gallery-heading h2,
.nan-gallery-detail-heading h2 {
    margin: 9px 0 12px;
    color: #4e5934;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
}
.nan-gallery-heading p,
.nan-gallery-detail-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #68735f;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.nan-gallery-album-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(76, 94, 44, .13);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(40, 55, 24, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.nan-gallery-album-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 40px rgba(40, 55, 24, .16);
}

.nan-gallery-album-image {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: #526632;
}

.nan-gallery-album-image::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 45%, rgba(21, 34, 13, .68));
    pointer-events: none;
}

.nan-gallery-album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.nan-gallery-album-card:hover .nan-gallery-album-image img {
    transform: scale(1.07);
}

.nan-gallery-album-image.is-empty {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 48px;
}

.nan-gallery-album-count {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: rgba(28, 42, 16, .76);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.nan-gallery-album-body {
    padding: 22px 24px 24px;
}

.nan-gallery-album-body h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.25;
}

.nan-gallery-album-body h3 a {
    color: #2f3c24;
    text-decoration: none;
}

.nan-gallery-album-body p {
    min-height: 50px;
    margin: 10px 0 16px;
    color: #6d7668;
    font-size: 15px;
    line-height: 1.65;
}

.nan-gallery-album-link,
.nan-gallery-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #597229;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nan-gallery-album-link i,
.nan-gallery-back-link i {
    transition: transform .2s ease;
}

.nan-gallery-album-link:hover,
.nan-gallery-back-link:hover {
    color: #f28d2b;
}

.nan-gallery-album-link:hover i {
    transform: translateX(4px);
}

.nan-gallery-back-link:hover i {
    transform: translateX(-4px);
}

.nan-gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.nan-gallery-load-more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    border-radius: 999px;
    background: #536b2c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(55, 75, 29, .2);
    transition: background .2s ease, transform .2s ease;
}

.nan-gallery-load-more a:hover {
    background: #f28d2b;
    color: #fff;
    transform: translateY(-2px);
}

.nan-gallery-load-more span {
    min-width: 22px;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    text-align: center;
}

.nan-gallery-detail-heading {
    max-width: 820px;
    margin: 22px 0 38px;
}

.nan-gallery-detail-heading p {
    margin-left: 0;
}

.nan-gallery-image-grid {
    margin-bottom: 0;
}

.nan-gallery-image-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #d8dfcf;
    aspect-ratio: 1 / .78;
    box-shadow: 0 8px 20px rgba(40, 55, 24, .09);
}

.nan-gallery-image-item::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    content: '\f00e';
    background: rgba(40, 60, 20, .52);
    color: #fff;
    font-family: 'Font Awesome 6 Free';
    font-size: 24px;
    font-weight: 900;
    opacity: 0;
    transition: opacity .25s ease;
}

.nan-gallery-image-item:hover::after {
    opacity: 1;
}

.nan-gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.nan-gallery-image-item:hover img {
    transform: scale(1.06);
}

.nan-gallery-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 64px 25px;
    border: 1px dashed rgba(77, 98, 42, .35);
    border-radius: 18px;
    color: #63715a;
    text-align: center;
}

.nan-gallery-empty > i {
    display: block;
    margin-bottom: 17px;
    color: #6c8d32;
    font-size: 48px;
}

.nan-gallery-empty h2,
.nan-gallery-empty h3 {
    margin: 0 0 9px;
    color: #334426;
    font-size: 25px;
    font-weight: 400;
}

.nan-gallery-empty p {
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .nan-gallery-albums,
    .nan-gallery-detail,
    .nan-gallery-related {
        padding: 62px 0 72px;
    }

    .nan-gallery-album-image {
        height: 235px;
    }
}

@media (max-width: 575.98px) {
    .nan-gallery-albums,
    .nan-gallery-detail,
    .nan-gallery-related {
        padding: 48px 0 58px;
    }

    .nan-gallery-heading {
        margin-bottom: 30px;
    }

    .nan-gallery-heading h2,
    .nan-gallery-detail-heading h2 {
        font-size: 35px;
    }

    .nan-gallery-heading p,
    .nan-gallery-detail-heading p {
        font-size: 15px;
    }

    .nan-gallery-album-image {
        height: 220px;
    }

    .nan-gallery-album-body {
        padding: 19px 20px 21px;
    }

    .nan-gallery-album-body p {
        min-height: 0;
    }
}

/* ========================================================================== 
   Travel Guide and article detail
   ========================================================================== */

.travel-guide-content,
.article-detail-content,
.article-detail-not-found {
    background: #f3eee6;
}

.travel-guide-content {
    padding: 76px 0 96px;
}

.travel-guide-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.travel-guide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #729126;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.travel-guide-heading h2 {
    margin: 8px 0 0;
    color: #253020;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.1;
}

.travel-guide-search {
    max-width: 940px;
    margin: 0 auto 24px;
    padding: 20px;
    border: 1px solid #dbe1cf;
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 28px rgba(46, 59, 34, .06);
}

.travel-guide-search label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #4e5934;
    font-size: 14px;
    font-weight: 500;
}

.travel-guide-search label i {
    color: #7f9c35;
}

.travel-guide-search > div {
    display: flex;
    gap: 10px;
}

.travel-guide-search input,
.travel-guide-search select {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #d4dcc8;
    border-radius: 12px;
    color: #283322;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.travel-guide-search input:focus {
    border-color: #78933d;
    box-shadow: 0 0 0 3px rgba(120, 147, 61, .14);
}

.travel-guide-search select {
    flex: 0 0 190px;
    padding-right: 34px;
    background: #fff;
}

.travel-guide-search select:focus {
    border-color: #78933d;
    box-shadow: 0 0 0 3px rgba(120, 147, 61, .14);
}

.travel-guide-search button,
.travel-guide-search a,
.travel-guide-card-link,
.article-gallery-more,
.article-detail-not-found a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.travel-guide-search button {
    min-width: 112px;
    border: 0;
    background: #4e5934;
    color: #fff;
    font-family: inherit;
}

.travel-guide-search a {
    min-width: 82px;
    border: 1px solid #d4dcc8;
    color: #52603a;
}

.travel-guide-search button:hover,
.travel-guide-card-link:hover,
.article-gallery-more:hover,
.article-detail-not-found a:hover {
    background: #78933d;
    color: #fff;
    transform: translateY(-2px);
}

.travel-guide-search a:hover {
    border-color: #78933d;
    color: #4e5934;
}

.travel-guide-count {
    margin: 0 0 20px;
    color: #6f7b63;
    font-size: 14px;
    text-align: right;
}

.travel-guide-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(83, 100, 57, .14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(41, 53, 28, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.travel-guide-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(41, 53, 28, .14);
}

.travel-guide-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 226px;
    overflow: hidden;
    background: #5e7333;
    color: #fff;
}

.travel-guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.travel-guide-card:hover .travel-guide-card-image img {
    transform: scale(1.06);
}

.travel-guide-card-image i {
    font-size: 38px;
}

.travel-guide-card-body {
    display: flex;
    flex-direction: column;
    min-height: 238px;
    padding: 22px;
}

.travel-guide-card-body time,
.article-related-card time {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7e8d69;
    font-size: 12px;
}

.travel-guide-card-body h3 {
    margin: 10px 0 8px;
    color: #293321;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
}

.travel-guide-card-body h3 a,
.article-related-card h3 a {
    color: inherit;
    text-decoration: none;
}

.travel-guide-card-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 18px;
    color: #68725d;
    font-size: 15px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.travel-guide-card-link {
    margin-top: auto;
    color: #5a6c33;
}

.travel-guide-card-link i,
.article-gallery-more i {
    font-size: 12px;
}

.travel-guide-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.travel-guide-pagination a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #cfd9bd;
    border-radius: 10px;
    color: #52603a;
    font-size: 14px;
    text-decoration: none;
}

.travel-guide-pagination a:hover,
.travel-guide-pagination a.is-active {
    border-color: #4e5934;
    background: #4e5934;
    color: #fff;
}

.travel-guide-empty,
.article-detail-not-found .container {
    padding: 64px 20px;
    border: 1px dashed #cfd9bd;
    border-radius: 22px;
    background: rgba(255, 255, 255, .66);
    color: #66725a;
    text-align: center;
}

.travel-guide-empty i,
.article-detail-not-found i {
    color: #78933d;
    font-size: 35px;
}

.travel-guide-empty h3,
.article-detail-not-found h1 {
    margin: 14px 0 8px;
    color: #2d3824;
    font-size: 28px;
    font-weight: 400;
}

.article-detail-content {
    padding: 72px 0 92px;
}

.article-detail-hero-content h1 {
    max-width: 900px;
}

.article-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.article-detail-back:hover {
    color: #d9ec92;
}

.article-detail-body,
.article-detail-gallery,
.article-detail-sidebar {
    border: 1px solid rgba(83, 100, 57, .15);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 32px rgba(41, 53, 28, .07);
}

.article-detail-body {
    padding: 30px clamp(22px, 4vw, 48px) 40px;
}

.article-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    margin: 0 0 22px;
    color: #6f7e61;
    font-size: 14px;
    white-space: nowrap;
}

.article-detail-breadcrumb a {
    color: #586b39;
    text-decoration: none;
}

.article-detail-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-detail-breadcrumb i {
    color: #99a78b;
    font-size: 10px;
}

.article-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding-bottom: 17px;
    border-bottom: 1px solid #e2e7da;
    color: #6a7858;
    font-size: 14px;
}

.article-detail-meta-row > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article-detail-tags span {
    padding: 4px 9px;
    border-radius: 999px;
    background: #edf2e6;
    color: #566c2e;
    font-size: 12px;
}

.article-detail-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 19px 0 20px;
    border-bottom: 1px solid #e2e7da;
    color: #61704c;
    font-size: 14px;
}

.article-detail-copy {
    padding-top: 25px;
    color: #4f5b45;
    font-size: 17px;
    line-height: 1.8;
}

.article-detail-copy > :first-child {
    margin-top: 0;
}

.article-detail-copy h2,
.article-detail-copy h3,
.article-detail-copy h4 {
    margin: 1.6em 0 .6em;
    color: #303d26;
    font-weight: 400;
    line-height: 1.25;
}

.article-detail-copy h2 { font-size: 31px; }
.article-detail-copy h3 { font-size: 25px; }
.article-detail-copy h4 { font-size: 20px; }

.article-detail-copy a {
    color: #5d7b21;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-detail-copy img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 12px;
}

.article-detail-copy table {
    display: block;
    width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border-collapse: collapse;
}

.article-detail-copy th,
.article-detail-copy td {
    min-width: 120px;
    padding: 11px;
    border: 1px solid #d9e0cf;
}

.article-detail-gallery {
    margin-top: 28px;
    padding: 28px;
}

.article-detail-gallery h2,
.article-detail-sidebar > h2 {
    margin: 0 0 22px;
    color: #324027;
    font-size: 27px;
    font-weight: 400;
}

.article-detail-gallery-item {
    display: block;
    height: 175px;
    overflow: hidden;
    border-radius: 14px;
    background: #607535;
}

.article-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.article-detail-gallery-item:hover img {
    transform: scale(1.07);
}

.article-gallery-more {
    margin: 24px auto 0;
    padding: 11px 20px;
    background: #4e5934;
    color: #fff;
}

.article-detail-sidebar {
    padding: 26px;
}

.article-related-card {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 13px;
    padding: 14px 0;
    border-top: 1px solid #e0e6d6;
}

.article-related-card:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.article-related-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    overflow: hidden;
    border-radius: 11px;
    background: #607535;
    color: #fff;
}

.article-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related-card h3 {
    margin: 7px 0 0;
    color: #354229;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.article-related-content {
    min-width: 0;
}

.article-related-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0 8px;
    color: #718069;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-related-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #627b2f;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.article-related-read:hover {
    color: #3f5420;
}

.article-related-read i {
    font-size: 10px;
}

.article-image-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #1f271a;
}

.article-image-modal img {
    display: block;
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.article-image-modal .btn-close {
    position: absolute;
    z-index: 1;
    top: 12px;
    right: 12px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
}

.article-detail-not-found {
    padding: 190px 0 95px;
}

.article-detail-not-found a {
    margin-top: 12px;
    padding: 11px 20px;
    background: #4e5934;
    color: #fff;
}

@media (max-width: 767.98px) {
    .travel-guide-content,
    .article-detail-content { padding: 48px 0 64px; }
    .travel-guide-search { padding: 15px; border-radius: 16px; }
    .travel-guide-search > div { flex-wrap: wrap; }
    .travel-guide-search input { flex-basis: 100%; }
    .travel-guide-search select { flex: 1 1 100%; }
    .travel-guide-search button { flex: 1; }
    .travel-guide-search a { min-width: 76px; height: 48px; }
    .travel-guide-count { text-align: left; }
    .travel-guide-card-image { height: 205px; }
    .travel-guide-card-body { min-height: 0; padding: 19px; }
    .article-detail-body { padding: 24px 19px 30px; }
    .article-detail-copy { font-size: 16px; }
    .article-detail-gallery { padding: 20px; }
    .article-detail-gallery-item { height: 135px; }
    .article-detail-sidebar { padding: 21px; }
}

@font-face {
    font-family: 'MVBoli';
    src: url('fonts/mvboli.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Mobile */
@media screen and (max-width: 994px) {
    .header-contain {
        position: relative !important;
    }

    .header-mb {
        background: #506336;
    }

    .header-mb p {
        font: 14px/1.4 'Kanit', sans-serif;
        color: #fff;
        font-weight: 300;
    }

    .header-mb h1 {
        font: 28px/1.6 'BebasNeue', sans-serif !important;
        color: #000;
        font-weight: 300;
    }



    .mobile-logo {
        height: 100px !important;
    }

    .mobile-header-bar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        min-height: 100px;
        padding: 8px 14px;
    }

    .mobile-book-btn {
        padding: 7px 16px;
        font-size: 12px;
        line-height: 1.2;
        white-space: nowrap;
        margin-left: auto;
    }

    .mobile-brand {
        margin: 0;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-brand-img {
        display: block;
        height: 74px;
        max-width: 100%;
    }

    .mobile-brand-text {
        display: block;
        font-family: 'Kanit', sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.05;
        letter-spacing: 0.04em;
        color: #fff;
        text-align: left;
    }

    .mobile-menu-toggle {
        color: #fff;
        line-height: 1;
        flex: 0 0 auto;
        margin-left: 2px;
    }

    .mobile-menu-toggle i {
        font-size: 28px;
    }

    .navbar-expand-lg {
        background-color: #fff !important;
    }

    .nav-item {
        border-bottom: 2px solid #EF4322;
    }

    .nav-item .nav-link {
        font: 18px/1.6 'BebasNeue', sans-serif !important;
        color: #6e6e6d !important;
        font-weight: 300 !important;
    }

    .navbar-nav .show {
        background-color: #000 !important;
        color: #6e6e6d !important;
    }

    .navbar-nav .dropdown-menu {
        /* background-color: #5F800C !important; */
        color: #6e6e6d !important;
    }

    .nav-item .dropdown-menu .dropdown-item {
        color: #6e6e6d !important;
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    .nav-item .dropdown-menu .mb-dropdown-item {
        font-size: 12px !important;
    }

    /**/
    .team-item-text {
        min-height: 7rem !important;
    }

  
    /**/
    .service-block {
        height: 310px !important;
    }

    .service-block .mask {
        background: rgba(0, 85, 167, 0.75) !important;

    }

    .service-block .mask h3,
    .service-block .mask p {
        color: #fff !important;
    }

    .service-detail-contain-bg {
        background-size: auto 100% !important;
    }

    @media screen and (max-width: 420px) {
        .mobile-header-bar {
            padding: 0 10px;
        }

        .mobile-book-btn {
            padding: 6px 12px;
            font-size: 11px;
        }

        .mobile-brand-img {
            height: 68px;
        }

        .mobile-brand-text {
            font-size: 13px;
        }
    }
}

/* Desktop */
body {
    /* background: #fff; */
    background: url(../images/island/bg-island.png) center no-repeat; background-size: cover;
}

/* Page Container */
.container {
    max-width: 1240px;
}

/* Content Container */
.content_container {
    position: relative;
}

/* Content Wrapper Container */
.logo {
    position: relative;
}


.top-contact {
    font-family: 'Kanit', sans-serif;
    background: #4B6430;
}

.desktop-header-inner {
    padding-top: 48px;
    padding-bottom: 24px;
}

/* ใช้เฉพาะหน้าที่มี slide */
.top-contact.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;

    /* 🔥 overlay ดำจาง */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0) 100%
    );
}

.top-contact a{
    /* position: absolute; */
    font-family: 'Kanit', sans-serif;
    text-decoration: none;
    font: 16px/1.4 'Kanit', sans-serif;
    font-weight: 300;

}

.top-contact p {
    font: 16px/1.4 'Kanit', sans-serif;
    color: #fff;
    font-weight: 300;
    margin-bottom: 0 !important;
}

.bg-zoom-effect {
transition: transform 0.4s ease, box-shadow 0.3s ease;
will-change: transform;
cursor: pointer;
}
.bg-zoom-effect:hover,
.bg-zoom-effect:focus,
.bg-zoom-effect:active {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.img-wrapper {
overflow: hidden;
border-radius: 0; /* หรือใช้ 1rem ถ้าอยากให้มีมุมโค้ง */
}

/* กำหนดขนาด slide */
.carousel-img-wrapper-cm {
    position: relative;
    height: 780px;
    overflow: hidden;
}
.carousel-img-wrapper {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: min(94%, 1100px);
    transform: translate(-50%, -50%);
    font-family: 'Kanit', sans-serif;
    /* font-size: clamp(1.5rem, 2.1vw, 2.2rem); */
    font-size: 42px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    background: rgba(170, 196, 161, 0.24);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 18px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 30px rgba(28, 56, 35, 0.18);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
}

.carousel-center-subtext {
    display: inline-block;
    margin-top: 12px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.58em;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.35;
    color: #f6edd3;
}

.carousel-center-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 24px;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5b7c4f 0%, #7d9b6f 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(38, 73, 41, 0.22);
    text-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    width: fit-content;
}

.carousel-center-button:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    background: linear-gradient(135deg, #4f7045 0%, #739064 100%);
    box-shadow: 0 16px 36px rgba(38, 73, 41, 0.28);
}

/* Overlay */
.carousel-img-wrapper-cm::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.carousel-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-box {
    font-family: 'Kanit', sans-serif;
    z-index: 2;
    right: 18%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 22px;
    max-width: 485px;
    color: #fff;
    text-align: center;
}
.hero-box h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 15px;
}

.hero-box p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}


.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 24px;
    border-radius: 12px;

    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 300;

    color: #ffffff;
    border: none;
    cursor: pointer;

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* =========================
   BUTTON COLORS
========================= */
.btn-quote {
    background-color: #ef4f14;
}

.btn-line {
    background-color: #61C347;
}

/* =========================
   HOVER / FOCUS / ACTIVE
   (กัน Bootstrap ทับ)
========================= */
.btn-quote:hover,
.btn-quote:focus,
.btn-quote:active {
    background-color: #ef4f14;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.btn-line:hover,
.btn-line:focus,
.btn-line:active {
    background-color: #61C347;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* =========================
   MOBILE: ปุ่มเรียงลง
========================= */
@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
    }
}
@media (max-width: 1368px) {
   .hero-box {
    font-family: 'Kanit', sans-serif;
    z-index: 2;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 22px;
    max-width: 620px;
    color: #fff;
    text-align: center;
}


}
@media (max-width: 767px) {
    .carousel-img-wrapper {
            height: 30vh;
        }
    .hero-box {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 20px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .carousel-center-text {
        width: 94%;
        font-size: 15px;
        line-height: 1.35;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .carousel-center-subtext {
        margin-top: 8px;
        font-size: 0.72em;
        line-height: 1.3;
    }

    .carousel-center-button {
        margin-top: 10px;
        padding: 8px 14px;
        font-size: 11px;
    }

    .hero-box h1 {
        font-size: 18px;
    }

    .hero-box p {
        font-size: 13px;
    }
}


.btn-close-custom {
    background: #dc3545;         /* สีแดง (Bootstrap danger) */
    color: #fff;
    border: none;
    border-radius: 50%;          /* ทำให้เป็นปุ่มวงกลม */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}
.btn-close-custom:hover {
    background: #bb2d3b;         /* สีแดงเข้มขึ้นเวลา hover */
    transform: rotate(90deg);    /* หมุนเล็กน้อยตอน hover */
}



.fa-stack[data-count] {
    cursor: pointer;
}

.fa-stack[data-count]:after {
    position: absolute;
    right: 0%;
    top: -5px;
    width: 15px;
    height: 15px;
    content: attr(data-count);
    font: 11px/14px 'Noto Sans SC', sans-serif !important;
    border-radius: 50%;
    text-align: center;
    font-weight: 700 !important;
    background: #fff;
    color: #fff;
}
/*lightbox*/

.lightbox {
    position: relative;
    background-color: #000;
    font: 24px 'BebasNeue', 'Kanit';
  }

  .image {
    opacity: 1;
    display: block;
    width: 100%;
    /* height: 350px; */
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
.middle a {
    font: 24px 'BebasNeue', 'Kanit';
  }


.middle h1 {
    font: 55px/1 'BebasNeue', 'Kanit';
    color: #F7A31F;
}

.middle p {
    font: 24px/1 'BebasNeue', 'Kanit';
    color: #fff;
}
  .lightbox:hover .image {
    opacity: 0.3;
  }
  
  .lightbox:hover .middle {
    opacity: 1;
    
  }
  
  .lightbox-text {
    background-color: #F7A31F;
    color: white;
    font: 18px 'BebasNeue', 'Kanit';
    padding: 16px 32px;
    border-radius: 25px;
  }
/* Partner */
.swiper-slide {
    font-size: 14px;
    font: 14px/1 'Kanit', sans-serif;
}

/* Swiper*/
.swiper-arrow-contain {
    width: 50px !important;
    height: 20px;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
}



.swiper-arrow-contain .swiper-button-prev,
.swiper-arrow-contain .swiper-button-next {
    width: 20px;
    height: 20px;
    border: 1px solid #2d75fd;
    background-color: #001c37;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.swiper-arrow-contain .swiper-button-prev {
    left: 0;
}

.swiper-arrow-contain .swiper-button-next {
    right: 0;
}

:root {
    --swiper-navigation-size: 10px !important;
}


/* Header */
/* .header-contain {
    position: absolute;
    top: 0;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.75);
}  ทำให้อยู่ชิดบนสุด*/
.header-contain {
    position: relative;
    z-index: 99;
    background-color: #fff;
}

.header_container {
    position: relative;
    font-family: 'BebasNeue', Kanit;
}

.header_container p {
    font: 18px/1 'BebasNeue', Kanit;
    /* color: #624827; */
    font-weight: 300;
}

.header_menu {
    position: relative;
    background-color: #f8f8f8;
    font-family: 'BebasNeue', Kanit;
}

.header_container .btn-sm {
    font: 14px/1 'BebasNeue', Kanit;
}

.header-nav {
    background: #fff;
    /* position: absolute; */

}

.line-top {
    border-top: 3px solid #E0C944;
    width: 100px;
}

.line-top-product {
    border-top: 5px solid #C11C1B;
    width: 160px;
}

.rslides {
    box-sizing: border-box;
    padding: 0px !important;
}

.rslides li {
    text-align: center;
}

.rslides img {
    display: block;
    float: none;
    width: auto;
    max-width: 100%;
    border: 0;
    text-align: center;
    margin: 0 auto;
}

.fixed-top {
    background: #4B6430;
    /* padding-right: 350px; */
    /*background: linear-gradient(90deg, rgba(31,87,34,1) 0%, rgba(33,105,43,1) 35%, rgba(33,118,50,1) 100%);*/
}
#navbar_top .menu-wrap {
    justify-content: flex-end;
}

#navbar_top .menu-inner {
    margin-left: auto;
    margin-right: 0;
}

#navbar_top.menu-centered .menu-wrap {
    justify-content: center;
}

#navbar_top.menu-centered .menu-inner {
    margin-left: auto;
    margin-right: auto;
}

#carouselCaptions {
    border: 0px solid #fff;
    overflow: hidden;
}

/* Lang */

.bg-boxlang {
    background-color: #0E2142 !important;
    border-radius: 0px !important;
    /* border: 1px solid #fff; */
    color: #fff;
}

.bg-boxlang:hover {
    background-color: #0E2142 !important;
    border-radius: 0px !important;
    /* border: 1px solid #fff; */
    color: #fff;
}


.btn-book {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 20px;
    color: #000;
    font-weight: 300 !important;
    background: #e8b33f;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    text-shadow: none;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-book::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.78em;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

/* 🔥 ตอนเอาเมาส์ชี้ */
.btn-book:hover {
    background: #f0bf4f;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    text-shadow: none;
}

.btn-book:hover::after {
    transform: translateX(3px);
}

/* ตอนกด */
.btn-book:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}


.main_menu {
    width: 100%;
    text-align: right;
    list-style: none;
    display: block;
}

.main_menu li {
    display: inline-block;
    /* border: 1px solid #eb2031; */
    vertical-align: top;
    margin: 0 10px;
}

.main_menu li a {
    font: 20.64px/32px 'supermarket';
    color: #fff;
    padding: 0 5px;
}

.main_menu li:hover {
    background-color: #fde7e8;
    border: 1px solid #000;
}

.main_menu li:hover a {
    color: #5F800C;
}

#menu_active {
    background-color: #fde7e8;
    border: 1px solid #000;
}

#menu_active a {
    color: #5F800C;
}

.submenu {
    width: 792px;
    position: absolute;
    top: 91px;
    right: 0;
    background-color: #000;
    z-index: 9;
    list-style: none;
    display: block;
    box-sizing: border-box;
    padding-left: 20px;
    text-align: center;

}

.submenu li {
    display: inline-block;
    border: 0;
    margin: 0 5px;
    position: relative;
}

.submenu li a {
    font: 14.55px/34px 'supermarket';
    color: #fff;
}

.submenu li #submenu {
    width: 120px;
    position: absolute;
    top: 34px;
    left: -10px;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;
}

.submenu li:hover #submenu {
    opacity: 1;
}

.submenu li #submenu li {
    width: 100%;
    /* background-color: #ff3333; */
    margin: 0;
    padding: 0 10px;
    text-align: left;

}

.submenu li #submenu li a {
    /* color: #6e6e6d; */
    color: #7b9067;
}
/* =====================================================
   BASE NAVBAR & MENU
===================================================== */

.main-menu {
    gap: 10px;
}

.main-menu .nav-item {
    position: relative;
}

/* -----------------------------------------------------
   MENU LINK
----------------------------------------------------- */
.main-menu .nav-link {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Hover */
.main-menu .nav-link:hover {
    color: #fff;
}

/* Active */
.main-menu .nav-link.active {
    color: #fff;
    font-weight: 400;
}

/* -----------------------------------------------------
   UNDERLINE EFFECT
----------------------------------------------------- */
.main-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #B0AC87;
    transition: width 0.35s ease;
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link.active::after {
    width: 100%;
}

/* -----------------------------------------------------
   SEPARATOR "/"
----------------------------------------------------- */
.main-menu .nav-item:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 200;
}

/* menu island */


.main-menu-land {
    gap: 10px;
}

.main-menu-land .nav-item {
    position: relative;
}

/* -----------------------------------------------------
   MENU LINK
----------------------------------------------------- */
.main-menu-land .nav-link {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Hover */
.main-menu-land .nav-link:hover {
    color: #fff;
}

/* Active */
.main-menu-land .nav-link.active {
    color: #fff;
    font-weight: 400;
}

/* -----------------------------------------------------
   UNDERLINE EFFECT
----------------------------------------------------- */
.main-menu-land .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.35s ease;
}

.main-menu-land .nav-link:hover::after,
.main-menu-land .nav-link.active::after {
    width: 100%;
}

/* -----------------------------------------------------
   SEPARATOR "/"
----------------------------------------------------- */
.main-menu-land .nav-item:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 200;
}

/* =====================================================
   DROPDOWN (PRODUCT)
===================================================== */

.nav-icon-item {
    position: relative;
}

.hassub,
.hassub ul {
    transition: all 0.25s ease-in-out;
}

/* Main dropdown */
.nav-icon-item > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
    z-index: 2048;

    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Show dropdown */
.nav-icon-item:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown item */
.nav-icon-item ul li {
    list-style: none;
    padding: 10px 16px;
    transition: background 0.2s ease;
}

.nav-icon-item ul li a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.nav-icon-item ul li a i {
    margin-right: 8px;
    color: #080098;
    transition: transform 0.2s ease;
}

.nav-icon-item ul li:hover {
    background: #f5f5f5;
    border-radius: 6px;
}

.nav-icon-item ul li:hover a i {
    transform: translateX(3px);
}

/* =====================================================
   SUB MENU
===================================================== */
.nav-icon-item ul li ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    padding: 8px 0;
    z-index: 2050;

    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-icon-item ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =====================================================
   ICON & IMAGE EFFECT
===================================================== */

.nav-icon-item a img {
    width: 25px;
    margin-right: 6px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-icon-item a:hover img {
    transform: scale(1.05);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {

    .main-menu .nav-item::after {
        display: none;
    }

    .nav-icon-item > ul,
    .nav-icon-item ul li ul {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

}
html {
    scroll-behavior: smooth;
}
.dropdown-toggle::after {
    vertical-align: 0.1em !important;
}

.nav-mb-button {
    font-size: 30px;
}

/* =====================================================
   JAYO home header and main slideshow
===================================================== */
.top-contact {
    background: #2f6b21;
}

.top-contact.header-absolute {
    background: rgba(47, 107, 33, 0.78);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.top-contact.desktop-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(47, 107, 33, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.top-contact.desktop-header-sticky .desktop-header-inner {
    min-height: 58px;
    padding-top: 0;
    padding-bottom: 0;
}

.top-contact.desktop-header-sticky .header-contact-line,
.top-contact.desktop-header-sticky .desktop-logo-centered,
.top-contact.desktop-header-sticky .header-lang-select {
    display: none;
}

.top-contact.desktop-header-sticky #navbar_top {
    padding-top: 0 !important;
}

.top-contact.desktop-header-sticky #navbar_top .row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 58px;
}

.top-contact.desktop-header-sticky .main-menu {
    min-height: 58px;
}

.top-contact.desktop-header-sticky .main-menu .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
}

.desktop-header-inner {
    min-height: 156px;
    padding-top: 12px;
    padding-bottom: 0;
}

.header-contact-line {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 26px;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.header-contact-line a {
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
}

.desktop-logo-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 220px;
    margin: 0 auto;
    text-decoration: none;
}

.desktop-logo-centered img {
    display: block;
    width: 100px;
    height: auto;
}

.desktop-logo-text {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: left;
}

.header-lang-select {
    position: absolute;
    top: 0;
    right: 0;
}

#navbar_top {
    width: 100%;
}

#navbar_top .menu-wrap,
#navbar_top.menu-centered .menu-wrap {
    justify-content: center;
}

#navbar_top .menu-inner,
#navbar_top.menu-centered .menu-inner {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.main-menu {
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.main-menu .nav-link {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.08em;
    padding: 7px 0 9px;
}

.main-menu .nav-link::after {
    bottom: 0;
    height: 2px;
    background-color: #e8b33f;
}

.main-menu .nav-item:not(:last-child)::after {
    right: -16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.bootstrap-select.selectpicker-m .dropdown-toggle,
.selectpicker-m + .bootstrap-select .dropdown-toggle,
.bootstrap-select > .dropdown-toggle.bg-white {
    min-height: 28px;
    padding: 3px 9px;
    border: 0;
    border-radius: 2px;
    font-size: 16px;
    box-shadow: none;
}

.carousel-img-wrapper-cm::after {
    background: rgba(0, 0, 0, 0.02);
}

.carousel-center-text {
    display: none;
}

#carouselCaptions .carousel-indicators,
#carouselCaptions .carousel-control-prev,
#carouselCaptions .carousel-control-next {
    display: none;
}

@media screen and (max-width: 994px) {
    .header-mb {
        background:
            linear-gradient(rgba(39, 103, 30, 0.94), rgba(39, 103, 30, 0.94)),
            url("../images/cover/bg-contact.png") center center / cover no-repeat;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-mb.mobile-header-absolute {
        position: absolute;
        top: 0;
        left: 0;
    }

    .mobile-logo {
        height: auto !important;
    }

    .mobile-header-bar {
        min-height: 94px;
        padding: 8px 14px;
        justify-content: space-between;
        gap: 10px;
    }

    .mobile-brand {
        min-width: 0;
        max-width: calc(100% - 166px);
        padding: 0;
    }

    .mobile-brand-img {
        width: 73px;
        height: 73px;
        object-fit: contain;
        flex: 0 0 73px;
    }

    .mobile-brand-text {
        max-width: 178px;
        font-size: 20px;
        line-height: 1.08;
        letter-spacing: 0.03em;
        white-space: normal;
    }

    .mobile-menu-toggle {
        margin-left: 0;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-toggle i {
        font-size: 22px;
    }

    .mobile-book-btn {
        flex: 0 0 auto;
        margin-left: auto;
        padding: 7px 12px;
        font-size: 11px;
        line-height: 1.1;
    }

    .carousel-img-wrapper-cm {
        height: 360px;
    }

    .carousel-img {
        object-position: center center;
    }

    .slide-menu {
        background: #f8faf3;
    }

    .slide-menu li > a {
        border-bottom: 1px solid rgba(66, 101, 39, 0.18);
        color: #203a1a;
        font-family: 'Kanit', sans-serif;
        font-size: 15px;
        letter-spacing: 0.04em;
    }
}

@media screen and (max-width: 420px) {
    .mobile-logo {
        height: auto !important;
    }

    .mobile-header-bar {
        min-height: 88px;
        padding: 7px 12px;
        gap: 8px;
    }

    .mobile-brand-img {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
    }

    .mobile-brand-text {
        max-width: 152px;
        font-size: 17px;
    }

    .mobile-book-btn {
        padding: 6px 10px;
        font-size: 10px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .carousel-img-wrapper-cm {
        height: 320px;
    }
}

/**/
.navbar,
.navbar-nav .dropdown {
    position: inherit !important;
}

.dropdown-menu-detail {
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
}

.dropdown-menu-detail h3 {
    font-size: 18px;
}

.dropdown-menu-detail p {
    font-size: 14px;
}

.black-nav {
    z-index: 5;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-family: 'Kanit', sans-serif;
}

.black-nav .nav-link {
    font: 14px/1 'Kanit', sans-serif;
    color: #000;
    font-weight: 300;
}

/* position dots in carousel */
.flickity-page-dots {
    bottom: 10px !important;
}

/* white circles */
.flickity-page-dots .dot {
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    background: transparent !important;
    border: 2px solid white !important;
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
    background: white !important;
}

.carousel-cell {
    width: 100%;
    margin-right: 10px;
}

/* Services */
.s-box {
    position: relative;
}

.s-box .img {
    /* position: relative; */
    /* width: 100px;
    height: 100px; */
    background-color: white;
    border-radius: 50%;
    border: 5px solid #ccc;
}

/* Circle list */
.circle-list {
    position: relative;
}

.circle-list h1 {
    font: 29px/1 'Kanit', sans-serif;
    font-weight: 500;
    color: #3b1413;
}

.circle-list h2 {
    font: 14.96px/1.3 'Kanit', sans-serif;
    font-weight: 500;
    color: #d0a051;
    text-transform: uppercase;
}

.circle-list h3 {
    font: 15.55px/1 'Kanit', sans-serif;
    font-weight: 700;
    color: #3b1413;
}

.circle-list p {
    font: 15.03px/1.2 'Kanit', sans-serif;
    font-weight: 400;
    color: #3b1413;
}

.circle-list a {
    font: 13.89px/1 'Kanit', sans-serif;
    font-weight: 400;
    color: #e8645a;
    text-decoration: none;
}

/* Pager */
.paging {
    font: 14px/1 'Kanit', sans-serif;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;           /* สำคัญมาก */
    gap: 6px;                  /* ระยะห่างแทน margin */
    margin: 15px 0;
}

.paging a,
.paging span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    /* border: 1px solid #ccc; */
    font-weight: 300;
    white-space: nowrap;       /* กันคำยาว */
}

.paging a {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}
.paging em {
    display: inline-flex;
}
.paging em {
    margin: 0;      /* กัน margin แปลก */
    padding: 0;
    font-style: normal; /* ไม่เอาตัวเอียง */
}
.paging em a {
    display: inline-flex;
}

.paging span.current {
    background-color: #B2A76D;
    border-color: #B2A76D;
    color: #000;
}

.paging span.disabled {
    color: #ccc;
    border-color: #eee;
}
@media (max-width: 480px) {
    .paging {
        gap: 4px;
    }

    .paging a,
    .paging span {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
        padding: 0 6px;
    }

    /* ปุ่ม หน้าแรก / สุดท้าย */
    .paging .first,
    .paging .prev {
        padding: 0 10px;
        font-size: 12px;
    }
}



/* gallery Container */
.gallery-container {
    font-family: 'Kanit', sans-serif;
    /* background-color: #F7F7F7; */
}
.gallery-container p {
    font: 15.03px/1.2 'Kanit', sans-serif;
    font-weight: 300;
    color: #000;
}


.gallery-container h1 {
    font: 38px 'Kanit', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    color: #fff;
}
.gallery-container h2 {
    font: 20px 'Kanit', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    color: #fff;
}
.gallery-container a {
    font: 13.89px/1 'Kanit', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #000;
}

/* NEWS Container */
.news-container {
    position: relative;
    background-size: cover;
    z-index: 2;
    font-family: 'Kanit', sans-serif;
}

.news-container h1 {
    font: 36px/1.2 'Kanit', sans-serif;
    font-weight: 200;
    color: #4b504a;
}

.news-container h2 {
    font: 16px/1.2 'Kanit', sans-serif;
    font-weight: 200;
    color: #000;
    line-height: 1.5em;
}

.news-container h3 {
    font: 14px/1 'Kanit', sans-serif;
    font-weight: 200;
    color: #000;
    line-height: 1.5em;
}

.news-container h3 i {
    color: #ef4f14;
}

.news-container p {
    font: 15.03px/1.2 'Kanit', sans-serif;
    font-weight: 300;
}

.news-container a {
    font: 13.89px/1 'Kanit', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #000;
}
/* ===== NEWS CARD ===== */
.news-card {
    display: block;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

/* ภาพข่าว */
.news-img {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* content */
.news-content {
    padding: 18px 20px 22px;
    font-family: 'Kanit', sans-serif;
}

/* title */
.news-title {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #000;
    margin-bottom: 8px;
}

/* date */
.news-date {
    font-size: 13px;
    font-weight: 300;
    color: #666;
    margin-bottom: 10px;
}

.news-date i {
    color: #EBCB5E;
    margin-right: 4px;
}

/* description */
.news-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 14px;
}

/* read more */
.news-readmore {
    font-size: 14px;
    font-weight: 400;
    color: #EBCB5E;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-readmore .arrow {
    transition: transform 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.news-card:hover .news-img {
    transform: scale(1.08);
}

.news-card:hover .news-readmore .arrow {
    transform: translateX(6px);
}
@media (max-width: 768px) {
    .news-title {
        font-size: 17px;
    }

    .news-desc {
        font-size: 14px;
    }
}


.news-item h2 {
    font: 24px/1 'Kanit', sans-serif;
    font-weight: 300;
}

.news-item h3 {
    font: 18px/1 'Kanit', sans-serif;
    font-weight: 300;
}

.news-item h4 {
    font: 15px/1 'Kanit', sans-serif;
    font-weight: 300;
}

.news-item h5 {
    font: 12px/1 'Kanit', sans-serif;
    font-weight: 300;
}

.all-link1 {
    font: 14px/1 'Kanit', sans-serif;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.all-link2 {
    font: 14px/1 'Kanit', sans-serif;
    font-weight: 400;
    color: #e8645a;
    text-decoration: none;
}

.all-link1:hover,
.all-link2:hover {
    color: inherit;
}

/* เปลี่ยน primary → #ef4f14 */
.text-primary {
    color: #ef4f14 !important;
}

.border-primary {
    border-color: #ef4f14 !important;
}

/* เปลี่ยน success → #042345 */
.text-success {
    color: #042345 !important;
}

.booking-summary-card {
    padding: 48px 34px;
    border: 1px solid #e4e8de;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(49, 64, 34, .09);
}
.booking-summary-card h1 { margin: 10px 0 12px; color: #27311e; font-size: 30px; font-weight: 700; }
.booking-summary-card p { margin: 0; color: #66705f; line-height: 1.75; }
.booking-summary-eyebrow { color: #4E5934; font-size: 12px; font-weight: 800; letter-spacing: .12em; }

/* Keep general website copy readable. Headings retain their own visual weight. */
#nan-site p,
#nan-site a,
#nan-site span,
#nan-site li,
#nan-site label,
#nan-site td,
#nan-site th,
#nan-site input,
#nan-site textarea,
#nan-site select,
#nan-site button,
#nan-site small,
#nan-site figcaption,
#nan-site blockquote {
    font-weight: 400 !important;
}

    .project-container .project-slider-wrap {
        margin-top: -22px;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 18px;
    }

    .project-container .carousel-banner .gallery-item {
        width: 85%;
    }

    .project-container .carousel-banner img {
        height: 320px;
    }
}
/* =========================================
   GLOBAL
========================================= */
.portfolio-container {
    font-family: 'Kanit', sans-serif;
}

.portfolio-container a {
    text-decoration: none;
    color: inherit;
}

/* Slide */


/* the slides */
.slick-slide {
    margin: 0 15px;
}

/* Flex */

.flex-direction-nav a {
    line-height: normal;
}

/* the parent */
.slick-list {
    margin: 0 -15px !important;
    overflow: visible !important;
}

.slick-slider {
    overflow: hidden !important;
}

.slider {
    width: 100%;
    /* height: 500px; */
    position: relative;
    overflow: hidden;
}

.slide-text-contain {
    /* min-height: 200px; */
    font-family: 'Kanit', sans-serif;
}

.slide-text-contain p {
    font-weight: 300;
    line-height: 1.4;
    font-size: 18px;
}

.slide-text-contain h1 {
    font: 46px/1.4 'Kanit', sans-serif;
    font-weight: 100;
    color: #fff;
}

.slide-text-contain h3 {
    font-size: 26px;
}

.slide-text-contain h4 {
    font-size: 20px;
}
.underline-white {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.underline-white::after {
  content: "";
  display: block;
  width: 120px;       /* ความยาวเส้น */
  height: 1px;       /* ความหนาเส้น */
  background: #fff;
  /* margin: 6px auto 0;  /*  ให้เส้นอยู่ตรงกลางใต้ข้อความ */
  border-radius: 2px;  /* ทำให้ปลายเส้นโค้งนิดหน่อย */
}
/* Mobile */
@media (min-width: 340px) and (max-width: 740px) {
    .slide-text-contain {
        min-height: 100px;
        font-family: 'Kanit', sans-serif;
    }

    .slide-text-contain p {
        font-weight: 300;
        line-height: 1.4;
        font-size: 18px;
    }

    .slide-text-contain h1 {
        font: 32px/1.4 'Kanit', sans-serif;
        font-weight: 100;
        color: #fff;
    }

    .slide-text-contain h3 {
        font-size: 26px;
    }

    .slide-text-contain h4 {
        font-size: 20px;
    }

}
@media (max-width: 767px) {
     .slide-text-contain {
        min-height: auto;
        font-family: 'Kanit', sans-serif;
    }

    .slide-text-contain h1 {
        font: 26px/1.4 'Kanit', sans-serif;
        font-weight: 100;
        color: #fff;
    }
}




/* position dots in carousel */
.flickity-page-dots {
    bottom: 10px !important;
}

/* white circles */
.flickity-page-dots .dot {
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    background: transparent !important;
    border: 2px solid white !important;
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
    background: white !important;
}

.header-style1 {
    position: relative;
    width: auto;
    height: auto;
}

.header-style1 h1 {
    font: 19px/1 'Kanit', sans-serif;
    font-weight: 500;
    color: #66cccc;
    margin: 0;
}

.header-style1 h1 span {
    color: #eb2031;
}

.header-style2 {
    font: 23px/1 'Kanit', sans-serif !important;
    font-weight: 500 !important;
    color: #3b1413 !important;
    text-align: center;
    position: relative;
}

.btn-viewmore {
    position: absolute;
    top: 7px;
    right: 67px;
    display: block;
    text-decoration: none;
    font: 12px/1 'Kanit', sans-serif;
    font-weight: 300;
    color: #eb2031;
}

/* Content */
.page-topic {
    font: 24px/38px 'supermarket';
    color: #fff;
    padding: 0 60px;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(to right, #eb2031 24px, #eb2031 24px, #000000 24px, #000 88%, #000 100%);
    /* W3C */
}

/* page About */

.about-index {

    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    /* height: 800px;     */
}

.home-about-section {
    position: relative;
    z-index: 4;
    padding: 0 0 28px;
    margin-top: -74px;
    background: transparent;
}

.home-about-card {
    max-width: 1040px;
    margin: 0 auto;
    padding: 36px 42px;
    background: #f8f8ef;
    border-radius: 6px;
    box-shadow: 0 16px 34px rgba(33, 48, 28, 0.12);
}

.home-about-content {
    text-align: center;
}

.home-about-content h1 {
    margin-bottom: 2px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
    color: #1f5a1e;
}

.home-about-content h2 {
    margin-bottom: 22px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1f5a1e;
}

.home-about-content p {
    max-width: 500px;
    margin: 0 auto 18px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #1f251d;
}

.home-about-content .btn-book {
    padding: 6px 22px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    background: #2C4E1E;
    border-color: rgba(255, 255, 255, 0.35);
}

.home-about-content .btn-book:hover {
    color: #fff;
    background: #365f26;
}

.home-about-image {
    width: 100%;
    aspect-ratio: 4 / 2.6;
    overflow: hidden;
    border-radius: 2px;
    background: #e8eadf;
}

.home-about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-index h1 {
    font: 42px 'Kanit', sans-serif;
    font-weight: 300;
    line-height: 1;
    color: #426527;
}

.about-index h2 {
    font-size: 18px;
    font-weight: 300;
    color: #426527;
}

.about-index h3 {
    font: 24px 'Kanit', sans-serif;
    font-weight: 100;
}


.about-index p {
    font: 16.24px/1.5 'Kanit', sans-serif;
    font-weight: 200;
    color: #000;
}
.about-index a {
    font: 16.24px/1.5 'Kanit', sans-serif;
    font-weight: 200;
    color: #fff;
    text-decoration: none !important;
}
.about-index ul {
	list-style-type: disc;
	padding-left: 20px;
  }
  
  .about-index li {
	margin-bottom: 8px;
  }
.about-index ul li::marker {
	color: #426527; /* เปลี่ยนสีจุด */
	font-size: 1.5em; /* ขยายจุด */
  }

/* ========================================================================
   NAN Adventure Tour - Home page (Header / Slide Show / About Us)
   Active styles for index.php. Keep new Home styles in this section.
   ======================================================================== */
:root {
    --nan-forest: #4e5934;
    --nan-forest-deep: #303a24;
    --nan-cream: #f4f1e8;
    --nan-ink: #20291b;
}

html {
    scroll-behavior: smooth;
}

body.home-page {
    background: var(--nan-cream);
}

#nan-site {
    overflow-x: clip;
    color: var(--nan-ink);
    font-family: 'Kanit', sans-serif;
}

/* ------------------------------------------------------------------------
   Header and navigation
   ------------------------------------------------------------------------ */
.site-header {
    position: absolute;
    z-index: 1040;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 18px;
}

.site-header-container {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1550px;
}

.site-navbar {
    flex: 1 1 auto;
    min-height: 76px;
    min-width: 0;
    padding: 9px 17px 9px 21px;
    border: 1px solid rgba(78, 89, 52, .18);
    border-radius: 999px;
    background: rgba(249, 248, 241, .97);
    box-shadow: 0 12px 32px rgba(29, 40, 21, .18);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 136px;
    margin: 0;
    padding: 0;
}

.site-brand img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
    object-position: left center;
}

.site-menu {
    flex: 0 1 auto;
    gap: 2px;
}

.site-menu .nav-link {
    position: relative;
    padding: 9px 10px !important;
    color: #465337;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-link-icon {
    display: inline-flex;
    width: 16px;
    margin-right: 10px;
    justify-content: center;
    color: var(--nan-forest);
    font-size: 14px;
}

.site-menu .nav-link::after {
    position: absolute;
    right: 10px;
    bottom: 2px;
    left: 10px;
    height: 2px;
    content: '';
    border-radius: 999px;
    background: var(--nan-forest);
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .18s ease, transform .18s ease;
}

.site-menu .nav-link:hover,
.site-menu .nav-link:focus,
.site-menu .nav-link.active {
    color: var(--nan-forest);
}

.site-menu .nav-link:hover::after,
.site-menu .nav-link:focus::after,
.site-menu .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header-tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.site-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #526040;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
}

.site-contact-link:hover,
.site-contact-link:focus {
    color: var(--nan-forest);
}

.site-language-switcher {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid #cfd8c3;
    border-radius: 999px;
    background: #eff3e9;
}

.site-language-switcher a {
    min-width: 34px;
    padding: 6px 8px;
    color: #53603f;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.site-language-switcher a.is-active {
    color: #fff;
    background: var(--nan-forest);
}

.site-book-button,
.site-book-button:hover,
.site-book-button:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--nan-forest);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 9px 18px rgba(46, 63, 28, .24);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-book-button:hover,
.site-book-button:focus {
    color: #fff;
    background: #3d4929;
    box-shadow: 0 12px 22px rgba(46, 63, 28, .3);
    transform: translateY(-2px);
}

.site-book-button i {
    font-size: 13px;
}

.site-book-button-desktop {
    flex: 0 0 auto;
    min-width: 118px;
    min-height: 44px;
}

.site-navbar .navbar-collapse {
    min-width: 0;
}

.site-book-button-desktop:hover,
.site-book-button-desktop:focus {
    transform: translateY(-2px);
}

.site-book-button-mobile {
    display: none;
}

.site-menu-toggle {
    border-color: rgba(78, 89, 52, .25);
    color: var(--nan-forest);
}

.site-menu-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(78, 89, 52, .18);
}

.site-menu-toggle .navbar-toggler-icon {
    width: 1.25em;
    height: 1.25em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%234e5934' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

body.inner-page .site-header {
    position: relative;
    padding-bottom: 18px;
    background: var(--nan-cream);
}

/* About uses the same overlay header treatment as the home page. */
body.about-page-site .site-header,
body.package-page-site .site-header {
    position: absolute;
    padding-bottom: 0;
    background: transparent;
}

/* ------------------------------------------------------------------------
   Tour Programs page
   ------------------------------------------------------------------------ */
.tour-page {
    overflow: hidden;
    background: #f3eee6;
}

.tour-list-kicker {
    margin: 0 0 11px;
    color: #c7dd62;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.tour-page-categories {
    position: relative;
    z-index: 2;
    padding: 70px 0 58px;
    background: radial-gradient(circle at 50% 0, #fffdf9 0, #f3eee6 68%);
}

.tour-page-heading {
    margin-bottom: 34px;
}

.tour-page-heading h2,
.tour-list-heading-row h2 {
    margin: 0;
    color: #4e5934;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}


.tour-category-card {
    display: flex;
    height: 100%;
    min-height: 228px;
    align-items: center;
    flex-direction: column;
    padding: 12px 12px 18px;
    overflow: hidden;
    border: 1px solid rgba(78, 89, 52, .14);
    border-radius: 14px;
    color: #364128;
    background: rgba(255, 255, 255, .87);
    box-shadow: 0 9px 20px rgba(53, 61, 36, .08);
    text-align: center;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tour-category-card:hover,
.tour-category-card:focus,
.tour-category-card.is-active {
    transform: translateY(-5px);
    border-color: #85a514;
    color: #364128;
    box-shadow: 0 16px 28px rgba(53, 61, 36, .16);
}

.tour-category-image {
    display: flex;
    width: 100%;
    height: 132px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #dce3cc;
}

.tour-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-category-image i {
    color: #587126;
    font-size: 42px;
}

.tour-category-card strong {
    display: block;
    margin-top: 13px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
}

.tour-category-card small {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: #68725c;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tour-page-list {
    padding: 72px 0 94px;
    background: #fffdf9;
}

.tour-list-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.tour-list-heading-row .tour-list-kicker {
    margin-bottom: 7px;
    color: #6c7f35;
}

.tour-list-total {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 6px 15px;
    border-radius: 999px;
    color: #4e5934;
    background: #eef2e6;
    font-size: 14px;
    font-weight: 700;
}

.tour-filter-panel {
    margin-bottom: 34px;
    padding: 20px 22px 22px;
    border: 1px solid #dfe5d3;
    border-radius: 18px;
    background: #f8faf4;
}

.tour-filter-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid #e2e8d7;
    color: #4d5b32;
    font-size: 16px;
    font-weight: 700;
}

.tour-filter-heading i {
    color: #76952f;
}

.tour-filter-panel label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 7px;
    color: #43502d;
    font-size: 14px;
    font-weight: 700;
}

.tour-filter-panel label i {
    color: #789244;
    font-size: 12px;
}

.tour-filter-input {
    position: relative;
}

.tour-filter-input i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #80915f;
    transform: translateY(-50%);
}

.tour-filter-input input,
.tour-filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d7dfca;
    border-radius: 10px;
    outline: 0;
    color: #354025;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
}

.tour-filter-input input {
    padding: 8px 14px 8px 42px;
}

.tour-filter-panel select {
    padding: 8px 12px;
}

.tour-filter-input input:focus,
.tour-filter-panel select:focus {
    border-color: #829d31;
    box-shadow: 0 0 0 3px rgba(130, 157, 49, .14);
}

.tour-filter-submit,
.tour-filter-reset {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.tour-filter-actions {
    display: flex;
    gap: 8px;
    min-width: 0;
}

.tour-filter-submit {
    flex: 1 1 auto;
    min-width: 104px;
    color: #fff;
    background: #4e5934;
}

.tour-filter-submit:hover { background: #354222; }

.tour-filter-reset {
    flex: 0 0 auto;
    padding: 0 14px;
    border: 1px solid #d6deca;
    color: #53623a;
    background: #fff;
    white-space: nowrap;
}

.tour-list-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4e8dc;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 13px 28px rgba(50, 62, 33, .09);
    transition: transform .22s ease, box-shadow .22s ease;
}

.tour-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(50, 62, 33, .15);
}

.tour-list-card-image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    color: #fff;
    background: #56653c;
}

.tour-list-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.tour-list-card:hover .tour-list-card-image img { transform: scale(1.045); }

.tour-list-card-image > span {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.tour-list-card-image em {
    position: absolute;
    bottom: 13px;
    left: 13px;
    max-width: calc(100% - 26px);
    padding: 7px 11px;
    overflow: hidden;
    border-radius: 7px;
    color: #fff;
    background: rgba(65, 92, 26, .94);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.tour-list-card-body {
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.tour-list-card h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.17;
}

.tour-list-card h3 a { color: #26301c; text-decoration: none; }

.tour-list-card-body > p {
    display: -webkit-box;
    min-height: 48px;
    margin: 11px 0 16px;
    overflow: hidden;
    color: #667057;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tour-list-facts {
    display: flex;
    min-height: 28px;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 19px;
}

.tour-list-facts span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 6px;
    color: #65763a;
    background: #f2f5ec;
    font-size: 12px;
    font-weight: 700;
}

.tour-list-group-size {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -7px 0 18px;
    padding: 8px 10px;
    border-left: 3px solid #89a94b;
    border-radius: 0 7px 7px 0;
    color: #536642;
    background: #f5f8ef;
}

.tour-list-group-size > i {
    color: #668735;
    font-size: 16px;
}

.tour-list-group-size span,
.tour-list-group-size small,
.tour-list-group-size b {
    display: block;
}

.tour-list-group-size small {
    color: #7b886d;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.tour-list-group-size b {
    color: #455d31;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.tour-list-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #edf0e8;
}

.tour-list-card-footer small,
.tour-list-card-footer span {
    display: block;
    color: #78816c;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.25;
}

.tour-list-card-footer strong {
    display: block;
    color: #f58225;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

.tour-card-view {
    display: inline-flex;
    min-height: 39px;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 8px;
    color: #fff;
    background: #4e5934;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.tour-card-view,
.tour-card-view span,
.tour-card-view:hover,
.tour-card-view:focus {
    color: #fff;
}

.tour-card-view:hover,
.tour-card-view:focus { background: #71862c; }

.tour-pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 40px;
}

.tour-pagination a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe3cc;
    border-radius: 9px;
    color: #4e5934;
    background: #fff;
    font-weight: 700;
    text-decoration: none;
}

.tour-pagination a:hover,
.tour-pagination a.is-active { color: #fff; border-color: #4e5934; background: #4e5934; }

.tour-empty-state {
    padding: 65px 24px;
    border: 1px dashed #cbd6ba;
    border-radius: 18px;
    color: #647052;
    background: #fafcf7;
    text-align: center;
}

.tour-empty-state i { color: #789934; font-size: 42px; }
.tour-empty-state h3 { margin: 14px 0 5px; color: #334124; font-size: 24px; font-weight: 700; }
.tour-empty-state p { margin: 0 0 18px; font-weight: 300; }
.tour-empty-state a { color: #4e5934; font-weight: 700; }

/* ------------------------------------------------------------------------
   Tour detail page
   ------------------------------------------------------------------------ */
.tour-detail-page {
    color: #38422d;
    background: #fffdf9;
}

/* Hero */
.tour-detail-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: #fff;
    background: #263018;
}

.tour-detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 23, 9, .83), rgba(13, 23, 9, .47) 48%, rgba(13, 23, 9, .12));
}

.tour-detail-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 640px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    padding-bottom: 72px;
}

.tour-detail-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.tour-detail-category {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 7px;
    color: #fff;
    background: #668225;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tour-detail-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 72px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.tour-detail-hero p {
    max-width: 620px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, .94);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
}

/* Main content */
.tour-detail-content {
    padding: 76px 0 20px;
    background: linear-gradient(180deg, #fffdf9 0, #f5f2e8 100%);
}

.tour-detail-section { margin-bottom: 58px; }
.tour-detail-section:last-child { margin-bottom: 0; }

.tour-detail-kicker {
    margin: 0 0 9px;
    color: #74883c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tour-detail-intro h2 {
    margin: 0 0 18px;
  color: #4e5934;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
}

.tour-detail-highlight {
    margin-bottom: 19px;
    padding: 17px 20px;
    border-left: 4px solid #92b52f;
    border-radius: 0 12px 12px 0;
    color: #46552e;
    background: #f0f5e8;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.tour-detail-copy {
    margin: 0;
    color: #68735f;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

/* Section headings */
.tour-detail-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.tour-detail-section-heading > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: #5d7332;
    font-size: 17px;
}

.tour-detail-section-heading p {
    margin: 0 0 1px;
    color: #94a36e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.tour-detail-section-heading h2 {
    margin: 0;
    color: #2d3920;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.tour-detail-section-heading h2.tour-detail-script-heading {
    font-family: 'MVBoli', 'Kanit', sans-serif;
    font-size: 33px;
    font-weight: normal;
    letter-spacing: .02em;
    text-transform: none;
}

/* Itinerary */
.tour-itinerary-list {
    position: relative;
    margin: 0;
    padding: 2px 0;
    list-style: none;
}

.tour-itinerary-list::before {
    position: absolute;
    top: 27px;
    bottom: 27px;
    left: 118px;
    width: 2px;
    content: '';
    background: linear-gradient(180deg, #9cb866, #dbe6c7);
}

.tour-itinerary-item {
    position: relative;
    display: grid;
    grid-template-columns: 92px 36px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 8px 0;
}

.tour-itinerary-list time {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border: 1px solid #cfdfad;
    border-radius: 8px;
    color: #547026;
    background: #f4f8ec;
    font-size: 15px;
    font-weight: 700;
}

.tour-itinerary-node {
    position: relative;
    z-index: 1;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 3px solid #fdfcf7;
    border-radius: 50%;
    color: #fff;
    background: #7e9d38;
    box-shadow: 0 0 0 1px #bfd093;
    font-size: 8px;
    transition: transform .2s ease, background .2s ease;
}

.tour-itinerary-item.is-start .tour-itinerary-node,
.tour-itinerary-item.is-finish .tour-itinerary-node {
    width: 34px;
    height: 34px;
    margin-left: -3px;
    font-size: 12px;
}

.tour-itinerary-item.is-start .tour-itinerary-node { background: #5d7730; }
.tour-itinerary-item.is-finish .tour-itinerary-node { background: #f08c30; }

.tour-itinerary-list p {
    margin: 0;
    padding: 14px 17px;
    border: 1px solid #e2ead6;
    border-radius: 11px;
    color: #546149;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 6px 15px rgba(66, 80, 40, .05);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.58;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tour-itinerary-item:hover p {
    border-color: #afc77d;
    box-shadow: 0 10px 20px rgba(66, 80, 40, .11);
    transform: translateX(4px);
}

.tour-itinerary-item:hover .tour-itinerary-node {
    background: #557225;
    transform: scale(1.12);
}

.tour-itinerary-list.is-timeless::before {
    left: 14px;
}

.tour-itinerary-list.is-timeless .tour-itinerary-item {
    grid-template-columns: 36px minmax(0, 1fr);
}

.tour-itinerary-list:not(.is-timeless) .tour-itinerary-item.is-without-time .tour-itinerary-node {
    grid-column: 2;
}

.tour-itinerary-list:not(.is-timeless) .tour-itinerary-item.is-without-time p {
    grid-column: 3;
}

/* Important note shown after the itinerary when managed from Admin. */
.tour-detail-note {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: -22px 0 58px;
    padding: 18px 20px;
    border: 1px solid #d8e8b6;
    border-left: 5px solid #f29a3b;
    border-radius: 0 14px 14px 0;
    color: #405132;
    background: linear-gradient(105deg, #f6faee, #fff7e9);
    box-shadow: 0 10px 22px rgba(73, 95, 37, .08);
}

.tour-detail-note-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #ef932f;
    font-size: 17px;
}

.tour-detail-note strong {
    display: block;
    margin: 0 0 4px;
    color: #4e5934;
    font-size: 15px;
    font-weight: 600;
}

.tour-detail-note p {
    margin: 0;
    color: #617052;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.58;
}

/* Package included */
.tour-inclusion-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tour-inclusion-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 12px 13px;
    border: 1px solid #e0e8d5;
    border-radius: 10px;
    color: #536047;
    background: rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.45;
}

.tour-inclusion-list i {
    margin-top: 4px;
    color: #78a417;
    font-size: 12px;
}

/* Gallery */
.tour-gallery-item {
    display: block;
    width: 100%;
    height: 170px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 13px;
    background: #dce2d1;
}

.tour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.tour-gallery-item:hover img { transform: scale(1.055); }

.tour-gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.tour-gallery-load-more a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid #bdcf97;
    border-radius: 10px;
    color: #4c6230;
    background: #f4f8ec;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.tour-gallery-load-more a:hover {
    border-color: #5e7730;
    color: #fff;
    background: #5e7730;
}

.tour-gallery-load-more span {
    display: inline-grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #769637;
    font-size: 11px;
}

/* Sidebar */
.tour-detail-sidebar {
    position: sticky;
    top: 24px;
}

.tour-detail-price-card {
    margin-bottom: 16px;
    padding: 25px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, #5b7132, #344620);
    box-shadow: 0 18px 34px rgba(50, 63, 27, .18);
}

.tour-detail-price-card p {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 300;
}

.tour-detail-price-card strong {
    display: block;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
}

.tour-detail-price-card > span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 300;
}

.tour-detail-price-card a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
    border-radius: 10px;
    color: #fff;
    background: #f59134;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.tour-detail-price-card a:hover {
    color: #fff;
    background: #e78022;
}

.tour-detail-facts {
    overflow: hidden;
    border: 1px solid #dde5d1;
    border-radius: 18px;
    background: #fff;
}

.tour-detail-facts > div {
    display: flex;
    gap: 13px;
    padding: 15px 17px;
    border-bottom: 1px solid #edf0e8;
}

.tour-detail-facts > div:last-child { border-bottom: 0; }

.tour-detail-facts > div > i {
    width: 21px;
    padding-top: 3px;
    color: #769336;
    text-align: center;
}

.tour-detail-facts span {
    display: block;
    color: #405031;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.tour-detail-facts small {
    display: block;
    margin-bottom: 2px;
    color: #869176;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.tour-detail-facts em {
    display: block;
    margin-top: 3px;
    color: #788466;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
}

.tour-detail-promo {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #44552c;
    box-shadow: 0 13px 25px rgba(50, 63, 27, .14);
}

.tour-detail-promo img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .28s ease;
}

.tour-detail-promo span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 8px;
    color: #fff;
    background: rgba(31, 44, 17, .85);
    font-size: 12px;
    font-weight: 500;
}

.tour-detail-promo:hover img { transform: scale(1.035); }

/* Related tours and empty state */
.tour-related-section {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid #dfe6d3;
}

.tour-related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.tour-related-heading p {
    margin: 0 0 5px;
    color: #738848;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.tour-related-heading h2 {
    margin: 0;
    color: #2e3b20;
    font-size: 33px;
    font-weight: 500;
    text-transform: uppercase;
}

.tour-related-heading h2.tour-detail-script-heading {
    font-family: 'MVBoli', 'Kanit', sans-serif;
    font-weight: normal;
    text-transform: none;
}

.tour-related-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #526932;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.tour-related-heading > a:hover { color: #85a51f; }

.tour-detail-not-found {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: #f3eee6;
}

.tour-detail-not-found i {
    color: #789634;
    font-size: 46px;
}

.tour-detail-not-found h1 {
    margin: 16px 0 8px;
    color: #324023;
    font-size: 34px;
    font-weight: 500;
}

.tour-detail-not-found p {
    color: #6c7660;
    font-weight: 300;
}

.tour-detail-not-found a {
    display: inline-flex;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 9px;
    color: #fff;
    background: #4e5934;
    font-weight: 700;
    text-decoration: none;
}

.tour-image-modal .modal-content {
    border: 0;
    background: transparent;
}

.tour-image-modal .modal-header {
    position: absolute;
    z-index: 1;
    right: 0;
}

.tour-image-modal .modal-body {
    padding: 0;
    text-align: center;
}

.tour-image-modal .modal-body img {
    max-width: 100%;
    max-height: 86vh;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .tour-detail-hero,
    .tour-detail-hero-content {
        min-height: 570px;
    }

    .tour-detail-sidebar { position: static; }
}

@media (max-width: 575.98px) {
    .tour-detail-hero,
    .tour-detail-hero-content {
        min-height: 540px;
    }

    .tour-detail-hero-content { padding: 100px 22px 45px; }
    .tour-detail-hero h1 { font-size: 40px; }
    .tour-detail-hero p { font-size: 15px; }
    .tour-detail-content { padding: 55px 0 65px; }
    .tour-detail-section { margin-bottom: 43px; }
    .tour-itinerary-list::before { left: 85px; }
    .tour-itinerary-item {
        grid-template-columns: 64px 31px minmax(0, 1fr);
        gap: 8px;
    }

    .tour-itinerary-list time,
    .tour-itinerary-list p {
        font-size: 14px;
    }

    .tour-itinerary-list p { padding: 12px 13px; }
    .tour-itinerary-list.is-timeless::before { left: 14px; }
    .tour-itinerary-list.is-timeless .tour-itinerary-item { grid-template-columns: 31px minmax(0, 1fr); }
    .tour-detail-note { margin: -14px 0 43px; padding: 16px; }
    .tour-inclusion-list { grid-template-columns: 1fr; }
    .tour-detail-section-heading h2 { font-size: 25px; }
    .tour-related-section { margin-top: 50px; padding-top: 38px; }
    .tour-related-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .tour-page-categories { padding: 48px 0 42px; }
    .tour-page-list { padding: 52px 0 66px; }
    .tour-list-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 20px; }
    .tour-filter-panel { padding: 16px; }
    .tour-filter-heading { margin-bottom: 14px; font-size: 15px; }
    .tour-list-card-image { height: 225px; }
    .tour-list-card-body { padding: 19px; }
}

/* ------------------------------------------------------------------------
   Home hero / Slide Show
   ------------------------------------------------------------------------ */
.home-hero {
    position: relative;
    min-height: 750px;
    background: #1b2116;
}

.home-hero-carousel,
.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item,
.home-hero-media {
    min-height: 750px;
}

.home-hero-media {
    position: relative;
}

.home-hero-media picture,
.home-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-hero-media img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
}

.home-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 16, 9, .75) 0%, rgba(12, 19, 10, .52) 34%, rgba(10, 18, 9, .09) 70%, rgba(10, 18, 9, .12) 100%);
}

.home-hero-content-wrap {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    max-width: 1440px;
    padding-top: 78px;
}

.home-hero-content {
    max-width: none;
    color: #fff;
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 10px;
    color: #d3d67c;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.4vw, 68px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.035em;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .18);
}

.home-hero-description {
    max-width: 590px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.home-hero-button {
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.home-hero-button i {
    margin-left: 7px;
    font-size: 11px;
}

.home-hero-button:hover,
.home-hero-button:focus {
    color: #fff;
    transform: translateY(-2px);
}

.home-hero-button-primary {
    border-color: #8ca243;
    background: #728834;
}

.home-hero-button-primary:hover,
.home-hero-button-primary:focus {
    border-color: #9bb24a;
    background: #80993c;
}

.home-hero-button-secondary:hover,
.home-hero-button-secondary:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, .14);
}

.home-hero-indicators {
    z-index: 3;
    bottom: 27px;
    margin: 0;
}

.home-hero-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border: 0;
    border-radius: 50%;
    background-color: #fff;
}

.home-hero-control {
    z-index: 3;
    width: 8%;
    opacity: 1;
}

.home-hero-control > span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    color: #fff;
    background: rgba(28, 39, 23, .18);
    font-size: 14px;
    transition: background .18s ease;
}

.home-hero-control:hover > span,
.home-hero-control:focus > span {
    background: rgba(28, 39, 23, .65);
}

.home-hero-empty {
    min-height: 750px;
    background: linear-gradient(rgba(13, 22, 12, .38), rgba(13, 22, 12, .38)), url('../images/preview.JPG') center / cover no-repeat;
}

/* ------------------------------------------------------------------------
   About Us: text_box.id = 1
   ------------------------------------------------------------------------ */
.home-about-section {
    position: relative;
    z-index: 4;
    margin-top: -52px;
    padding: 0 0 70px;
    background: transparent;
}

.home-about-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 36px;
    border: 0;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(115deg, #58683c 0%, #46552f 100%);
    box-shadow: 0 18px 42px rgba(37, 47, 27, .23);
}

.home-about-content {
    text-align: left;
}

.home-about-kicker {
    margin: 0 0 7px;
    color: #dfe6c8;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.home-about-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 2.3vw, 36px);
    font-weight: 300;
    line-height: 1.12;
    text-transform: uppercase;
}

.home-about-description {
    max-width: 650px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .89);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
}

.home-about-button,
.home-about-button:hover,
.home-about-button:focus {
    margin-top: 18px;
    padding: 8px 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #9acd17;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.home-about-button:hover,
.home-about-button:focus {
    color: #fff;
    background: #7eaf0d;
}

.home-about-button i {
    margin-left: 7px;
    font-size: 10px;
}

.home-about-image {
    width: calc(100% + 12px);
    max-width: none;
    margin: 0 auto;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
}

.home-about-card .col-lg-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width:1599.98px) {
    .site-email-link {
        display: none;
    }
}

@media (max-width:1299.98px) {
    .site-menu .nav-link {
        padding-right: 6px !important;
        padding-left: 6px !important;
        font-size: 14px;
    }

    .site-contact-link span {
        display: none;
    }
}

@media (max-width:1199.98px) {
    .site-header-container {
        display: block;
    }

    .site-header {
        padding: 12px 12px 0;
    }

    .site-navbar {
        min-height: 58px;
        padding: 7px 12px;
        border-radius: 18px;
    }

    .site-brand {
        min-width: 108px;
    }

    .site-brand img {
        width: 112px;
        height: 46px;
    }

    .site-navbar .navbar-collapse {
        margin-top: 10px;
        padding: 12px;
        border-radius: 13px;
        background: #f9f8f1;
    }

    .site-menu {
        gap: 0;
    }

    .site-menu .nav-item {
        border-bottom: 1px solid #d8e0ce;
    }

    .site-menu .nav-item:last-child {
        border-bottom: 0;
    }

    .site-menu .nav-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 13px 7px !important;
        font-size: 15px;
    }

    .site-menu .nav-link::after {
        display: none;
    }

    .nav-link-icon {
        display: inline-flex;
        width: 20px;
        margin-right: 0;
        justify-content: center;
        color: var(--nan-forest);
        font-size: 15px;
    }

    .site-header-tools {
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 12px 0 0;
        padding-top: 12px;
        border-top: 1px solid #e6eadf;
    }

    .site-contact-link span {
        display: inline;
    }

    .site-email-link span {
        display: none;
    }

    .site-book-button-desktop {
        display: none;
    }

    .site-book-button-mobile {
        display: inline-flex;
        width: 100%;
        min-height: 42px;
        margin-bottom: 2px;
        font-size: 12px;
    }

    .home-hero,
    .home-hero-carousel,
    .home-hero-carousel .carousel-inner,
    .home-hero-carousel .carousel-item,
    .home-hero-media,
    .home-hero-empty {
        min-height: 680px;
    }

    .home-hero-content-wrap {
        padding-top: 84px;
    }

    .home-about-section {
        margin-top: -34px;
    }
}

@media (max-width:767.98px) {
    .home-hero,
    .home-hero-carousel,
    .home-hero-carousel .carousel-inner,
    .home-hero-carousel .carousel-item,
    .home-hero-media,
    .home-hero-empty {
        min-height: 650px;
    }

    .home-hero-shade {
        background: linear-gradient(180deg, rgba(9, 16, 9, .42) 0%, rgba(9, 16, 9, .16) 32%, rgba(9, 16, 9, .8) 100%);
    }

    .home-hero-content-wrap {
        align-items: flex-end;
        padding: 0 24px 92px;
    }

    .home-hero-eyebrow {
        font-size: 12px;
    }

    .home-hero-content h1 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .home-hero-description {
        font-size: 14px;
    }

    .home-hero-control {
        display: none;
    }

    .home-hero-indicators {
        bottom: 28px;
    }

    .home-about-section {
        margin-top: -20px;
        padding-bottom: 42px;
    }

    .home-about-card {
        padding: 27px 23px;
        border-radius: 16px;
    }

    .home-about-content h2 {
        font-size: 30px;
    }

    .home-about-description {
        font-size: 14px;
    }

    .home-about-image {
        width: 100%;
        margin-top: 3px;
    }
}

@media (max-width:400px) {
    .site-contact-link span {
        display: inline;
    }

    .site-email-link span {
        display: none;
    }

    .site-header-tools {
        gap: 7px;
    }

    .site-book-button {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.about-bg {
    background: url(../images/cover/about_06.png) center no-repeat;
    background-size: cover;
    /* height: 700px;
    width: 700px; */
}

/* Mobile */
@media (min-width: 340px) and (max-width: 740px) {
    .about-index h1 {
        font: 26px 'Kanit', sans-serif;
        font-weight: 200;
        color: #2e4531;
    }
    .about-index h2 {
        font-size: 20px;
    }

    .about-index h3 {
        font: 19px/1.4 'Kanit', sans-serif;
        font-weight: 500;
    }


    .about-index p {
        font: 16.24px/1.5 'Kanit', sans-serif;
        font-weight: 200;
        color: #4b504a;
    }

}

/* ========================================================================
   Home - Tour Programs
   Categories and highlighted tours are populated from the Admin system.
   ======================================================================== */
.home-tours-section {
    padding: 28px 0 54px;
    background:
        radial-gradient(circle at 12% 14%, rgba(174, 188, 140, .13), transparent 28%),
        linear-gradient(180deg, #f5f3ea 0%, #eef0e5 100%);
}

.home-tours-section .container {
    max-width: 1360px;
}

.home-tours-heading {
    max-width: 760px;
    margin: 0 auto 22px;
    text-align: center;
}

.home-tours-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #72824f;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-tours-kicker i {
    color: #84a546;
    font-size: 13px;
}

.home-tours-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 5px;
}

.home-tours-title-line {
    width: min(12vw, 88px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 89, 52, .5));
}

.home-tours-title-line:last-child {
    background: linear-gradient(90deg, rgba(78, 89, 52, .5), transparent);
}

.home-tours-heading h2 {
    margin: 0;
    color: #4e5934;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-tours-description {
    margin: 4px auto 12px;
    color: #68735f;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.home-tours-see-all,
.home-tours-see-all:hover,
.home-tours-see-all:focus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-width: 148px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: #f29a3b;
    box-shadow: 0 7px 13px rgba(189, 111, 29, .2);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.home-tours-see-all:hover,
.home-tours-see-all:focus {
    color: #fff;
    background: #df8325;
    transform: translateY(-2px);
}

.home-tour-category-grid {
    max-width: 1360px;
    margin: 0 auto;
}

.home-tour-category-card {
    position: relative;
    display: flex;
    min-height: 177px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 12px;
    border: 0;
    border-radius: 7px;
    overflow: hidden;
    color: #fff;
    background: #52633b;
    box-shadow: 0 6px 13px rgba(43, 56, 29, .08);
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-tour-category-card:hover,
.home-tour-category-card:focus {
    color: #fff;
    background: #52633b;
    box-shadow: 0 13px 23px rgba(43, 56, 29, .16);
    transform: translateY(-4px);
}

.home-tour-category-image {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: #e1e8d4;
}

.home-tour-category-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-tour-category-image::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(38, 53, 25, .04) 28%, rgba(27, 38, 18, .68) 100%);
    pointer-events: none;
    transition: background .2s ease;
}

.home-tour-category-card:hover .home-tour-category-image::after,
.home-tour-category-card:focus .home-tour-category-image::after {
    background: linear-gradient(180deg, rgba(38, 53, 25, .02) 28%, rgba(27, 38, 18, .8) 100%);
}

.home-tour-category-image.is-empty {
    color: #fff;
    background: linear-gradient(135deg, #6f7e4d, #40522f);
    font-size: 34px;
}

.home-tour-category-name {
    position: relative;
    z-index: 3;
    display: block;
    margin: 0 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .55);
    text-transform: uppercase;
}

.home-tour-category-description {
    position: relative;
    z-index: 3;
    display: block;
    margin: 4px 10px 0;
    color: rgba(255, 255, 255, .9);
    font-size: 9px;
    font-weight: 300;
    line-height: 1.35;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.home-featured-tour-list {
    display: grid;
    gap: 36px;
    max-width: 1360px;
    margin: 54px auto 0;
}

.home-featured-tour {
    overflow: visible;
    transition: transform .22s ease;
}

.home-featured-tour:hover {
    transform: translateY(-4px);
}

.home-featured-tour-image {
    position: relative;
    height: 400px;
    overflow: visible;
    border-radius: 0 22px 22px 0;
    background: #dce6d1;
}

.home-featured-tour-image::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(17, 27, 12, 0) 45%, rgba(17, 27, 12, .34) 100%);
    pointer-events: none;
}

.home-featured-tour-image img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 22px 22px 0;
    transition: transform .35s ease;
}

.home-featured-tour:hover .home-featured-tour-image img {
    transform: scale(1.04);
}

.home-featured-tour-image.is-empty {
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #5e7041, #364727);
    font-size: 64px;
    border-radius: 0 22px 22px 0;
}

.home-featured-tour.is-reversed .home-featured-tour-image img,
.home-featured-tour.is-reversed .home-featured-tour-image.is-empty {
    border-radius: 22px 0 0 22px;
}

.home-featured-tour.is-reversed .home-featured-tour-image {
    border-radius: 22px 0 0 22px;
}

.home-featured-tour-content {
    position: relative;
    display: flex;
    min-height: 300px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 29px 22px;
    border-radius: 22px 0 0 22px;
    background: rgba(255, 255, 255, .94);
}

.home-featured-tour-content::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 4px;
    content: '';
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, #829e4a, #4e5934);
}

.home-featured-tour-number {
    position: absolute;
    top: 14px;
    right: 19px;
    color: rgba(78, 89, 52, .12);
    font-size: 39px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.06em;
}

.home-featured-tour.is-reversed .home-featured-tour-content {
    border-radius: 0 22px 22px 0;
}

.home-featured-tour.is-reversed .home-featured-tour-content::before {
    right: 0;
    left: auto;
    border-radius: 4px 0 0 4px;
}

.home-featured-tour-category {
    position: absolute;
    z-index: 3;
    bottom: -12px;
    left: -14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 190px;
    padding: 9px 12px;
    border-radius: 3px;
    color: #fff;
    background: #5f8730;
    box-shadow: 0 7px 14px rgba(48, 76, 19, .26);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-featured-tour.is-reversed .home-featured-tour-category {
    right: -14px;
    left: auto;
}

.home-featured-tour-category i {
    flex: 0 0 auto;
    font-size: 16px;
}

.home-featured-tour-content h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.28em;
    margin: 0;
    padding-right: 54px;
    color: #303c25;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.14;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-transform: uppercase;
}

.home-featured-tour-content > p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 4.8em;
    margin: 7px 0 0;
    color: #68735f;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-featured-tour-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.home-featured-tour-facts > span {
    display: grid;
    min-width: 82px;
    grid-template-columns: auto 1fr;
    column-gap: 6px;
    padding: 6px 8px;
    border: 1px solid #e3e9da;
    border-radius: 4px;
    color: #566548;
    background: #f7f9f3;
    font-size: 11px;
    line-height: 1.15;
}

.home-featured-tour-facts i {
    grid-row: span 2;
    align-self: center;
    color: #6e8b38;
    font-size: 16px;
}

.home-featured-tour-facts small,
.home-featured-tour-facts b {
    display: block;
}

.home-featured-tour-facts small {
    color: #849079;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.home-featured-tour-facts b {
    overflow: hidden;
    max-width: 103px;
    color: #45543a;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-featured-tour-experience {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    margin-top: 10px;
    padding: 8px 10px;
    border-left: 2px solid #819d4c;
    border-radius: 3px;
    color: #536248;
    background: #f3f7eb;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.home-featured-tour-experience > i {
    flex: 0 0 auto;
    color: #6e8b38;
    font-size: 16px;
}

.home-featured-tour-experience span {
    min-width: 0;
}

.home-featured-tour-experience small {
    display: block;
    color: #849079;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-featured-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-top: 9px;
    color: #68775a;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.home-featured-tour-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home-featured-tour-meta i {
    color: #789444;
    font-size: 13px;
}

.home-featured-tour-price {
    min-width: 190px;
    margin-top: 14px;
    padding: 9px 11px;
    border-left: 3px solid #f29a3b;
    border-radius: 3px;
    background: #fff4e5;
}

.home-featured-tour-price span,
.home-featured-tour-price strong {
    display: block;
}

.home-featured-tour-price span {
    color: #40513a;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home-featured-tour-price strong {
    margin-top: 1px;
    color: #f28a2e;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
}

.home-featured-tour-link,
.home-featured-tour-link:hover,
.home-featured-tour-link:focus {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 10px 17px;
    border-radius: 2px;
    color: #fff;
    background: #f29a3b;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.home-featured-tour-link:hover,
.home-featured-tour-link:focus {
    color: #fff;
    background: #df8325;
    transform: translateY(-2px);
}

.home-tour-empty {
    display: flex;
    max-width: 1360px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 180px;
    margin: 0 auto;
    border: 1px dashed rgba(78, 89, 52, .35);
    border-radius: 18px;
    color: #71805a;
    background: rgba(255, 255, 255, .48);
}

.home-tour-all-bottom {
    margin-top: 32px;
    text-align: center;
}

.home-tour-all-bottom a,
.home-tour-all-bottom a:hover,
.home-tour-all-bottom a:focus {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--nan-forest);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.home-tour-all-bottom a::after {
    width: 42px;
    height: 1px;
    content: '';
    background: currentColor;
    transition: width .2s ease;
}

.home-tour-all-bottom a:hover::after,
.home-tour-all-bottom a:focus::after {
    width: 57px;
}

.home-tour-empty p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
}

@media (max-width: 991.98px) {
    .home-tours-section {
        padding: 48px 0 74px;
    }

    .home-tours-section .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .home-tours-heading {
        margin-bottom: 20px;
    }

    .home-tour-category-card {
        min-height: 172px;
    }

    .home-featured-tour-list {
        max-width: 760px;
        gap: 42px;
        margin-top: 52px;
    }

    .home-featured-tour .row > div:first-child {
        order: 2;
    }

    .home-featured-tour .row > div:last-child {
        order: 1;
    }

    .home-featured-tour-image,
    .home-featured-tour-content {
        min-height: auto;
    }

    .home-featured-tour-image {
        height: auto;
        aspect-ratio: 16 / 8;
    }

    .home-featured-tour-image img,
    .home-featured-tour-image.is-empty,
    .home-featured-tour.is-reversed .home-featured-tour-image img,
    .home-featured-tour.is-reversed .home-featured-tour-image.is-empty {
        border-radius: 22px 22px 0 0;
    }

    .home-featured-tour-image,
    .home-featured-tour.is-reversed .home-featured-tour-image {
        border-radius: 22px 22px 0 0;
    }

    .home-featured-tour-content,
    .home-featured-tour.is-reversed .home-featured-tour-content {
        border-radius: 0 0 22px 22px;
        padding: 30px 32px 28px;
    }

    .home-featured-tour-category,
    .home-featured-tour.is-reversed .home-featured-tour-category {
        right: 18px;
        bottom: -13px;
        left: auto;
    }
}

@media (max-width: 767.98px) {
    .home-tours-section {
        padding: 44px 0 64px;
    }

    .home-tours-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-tours-heading {
        margin-bottom: 20px;
    }

    .home-tours-heading h2 {
        font-size: 30px;
    }

    .home-tours-kicker {
        font-size: 10px;
    }

    .home-tours-title-row {
        gap: 10px;
    }

    .home-tours-title-line {
        width: 38px;
    }

    .home-tours-description {
        padding: 0 14px;
        font-size: 12px;
    }

    .home-tour-category-name {
        font-size: 12px;
    }

    .home-tour-category-description {
        font-size: 10px;
    }

    .home-tour-category-card {
        min-height: 158px;
    }

    .home-featured-tour-list {
        gap: 38px;
        margin-top: 44px;
    }

    .home-featured-tour-image {
        aspect-ratio: 4 / 3;
    }

    .home-featured-tour-content {
        padding: 28px 24px 26px;
    }

    .home-featured-tour-content h3 {
        padding-right: 48px;
        font-size: 22px;
    }

    .home-featured-tour-content > p {
        min-height: 0;
        font-size: 13px;
    }

    .home-featured-tour-content::before {
        top: 20px;
        bottom: 20px;
    }

    .home-featured-tour-facts > span {
        min-width: 80px;
    }

    .home-featured-tour-experience {
        font-size: 12px;
    }

    .home-featured-tour-category,
    .home-featured-tour.is-reversed .home-featured-tour-category {
        right: 14px;
        bottom: -14px;
        max-width: 190px;
        font-size: 11px;
    }

    .home-featured-tour-number {
        top: 15px;
        right: 18px;
        font-size: 36px;
    }
}

/* ========================================================================
   Home - Tour Plan contact call to action
   Contact details and QR codes are controlled in Admin > Contact.
   ======================================================================== */
.home-tour-plan {
    position: relative;
    isolation: isolate;
    min-height: 435px;
    padding: 62px 0;
    color: #fff;
    background: url('../images/cover/cover-plan.jpg') center / cover no-repeat;
}

.home-tour-plan::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background: linear-gradient(90deg, rgba(20, 33, 14, .1) 0%, rgba(28, 44, 18, .48) 42%, rgba(28, 44, 18, .94) 100%);
}

.home-tour-plan .container {
    max-width: 1360px;
}

.home-tour-plan-content {
    max-width: 640px;
    margin-left: auto;
    padding: 7px 0;
    text-align: center;
}

.home-tour-plan-kicker {
    margin: 0 0 8px;
    color: #d6e5b9;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-tour-plan h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 400;
    line-height: 1.1;
}

.home-tour-plan h2.is-english {
    font-family: 'MVBoli', 'Kanit', sans-serif;
    font-weight: normal;
}

.home-tour-plan h2.is-thai {
    font-family: 'Kanit', sans-serif;
}

.home-tour-plan-description {
    max-width: 545px;
    margin: 15px auto 0;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
}

.home-tour-plan-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.home-tour-plan-action,
.home-tour-plan-action:hover,
.home-tour-plan-action:focus {
    display: inline-flex;
    min-width: 174px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(231, 241, 214, .36);
    border-radius: 10px;
    color: #fff;
    background: rgba(79, 104, 44, .82);
    box-shadow: 0 10px 21px rgba(8, 15, 6, .2);
    text-align: left;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.home-tour-plan-action:hover,
.home-tour-plan-action:focus {
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
    background: #40542a;
    transform: translateY(-3px);
}

.home-tour-plan-action.is-line {
    background: rgba(64, 84, 42, .74);
}

.home-tour-plan-action.is-phone {
    background: rgba(106, 129, 67, .76);
}

.home-tour-plan-action > i {
    font-size: 29px;
}

.home-tour-plan-action span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
}

.home-tour-plan-action small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .74);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-tour-plan-qr-list {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 22px;
}

.home-tour-plan-qr,
.home-tour-plan-qr:hover,
.home-tour-plan-qr:focus {
    display: flex;
    width: 124px;
    flex-direction: column;
    align-items: center;
    padding: 9px 9px 8px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    color: #e6efd9;
    background: rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 400;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.home-tour-plan-qr:hover,
.home-tour-plan-qr:focus {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    transform: translateY(-3px);
}

.home-tour-plan-qr img {
    display: block;
    width: 102px;
    height: 102px;
    margin-bottom: 7px;
    padding: 3px;
    border-radius: 4px;
    background: #fff;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .home-tour-plan {
        min-height: 0;
        padding: 68px 0;
        background-position: 38% center;
    }

    .home-tour-plan::before {
        background: linear-gradient(90deg, rgba(28, 44, 18, .68), rgba(28, 44, 18, .9));
    }

    .home-tour-plan-content {
        max-width: 670px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .home-tour-plan {
        padding: 58px 0 54px;
        background-position: 30% center;
    }

    .home-tour-plan .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-tour-plan-kicker {
        font-size: 11px;
    }

    .home-tour-plan h2 {
        font-size: 31px;
    }

    .home-tour-plan-qr {
        width: 110px;
    }

    .home-tour-plan-qr img {
        width: 88px;
        height: 88px;
    }

    .home-tour-plan-description {
        font-size: 13px;
    }

    .home-tour-plan-actions {
        gap: 9px;
    }

    .home-tour-plan-action {
        min-width: calc(50% - 5px);
        padding: 11px 9px;
    }

    .home-tour-plan-action > i {
        font-size: 25px;
    }

    .home-tour-plan-action span {
        font-size: 13px;
    }
}

/* ========================================================================
   Home - Articles and Gallery
   Content is managed from Admin > Articles / Photo Albums.
   ======================================================================== */
.home-discover-section {
    padding: 78px 0 88px;
    background: #f3eee6;
}

.home-discover-section .container {
    max-width: 1360px;
}

.home-discover-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.home-discover-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #72824f;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-discover-kicker i {
    color: #84a546;
    font-size: 13px;
}

.home-discover-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 5px;
}

.home-discover-title-line {
    width: min(12vw, 88px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 89, 52, .5));
}

.home-discover-title-line:last-child {
    background: linear-gradient(90deg, rgba(78, 89, 52, .5), transparent);
}

.home-discover-heading h2 {
    margin: 0;
    color: #4e5934;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-discover-description {
    margin: 4px auto 12px;
    color: #68735f;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.home-discover-see-all,
.home-discover-see-all:hover,
.home-discover-see-all:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 148px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: #f39a35;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.home-discover-see-all:hover,
.home-discover-see-all:focus {
    color: #fff;
    background: #d87b1b;
    transform: translateY(-2px);
}

.home-discover-see-all i {
    font-size: 10px;
}

.home-article-card {
    display: grid;
    min-height: 208px;
    grid-template-columns: minmax(150px, 42%) 1fr;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 27px rgba(60, 65, 43, .12);
    transition: box-shadow .2s ease, transform .2s ease;
}

.home-article-card:hover {
    box-shadow: 0 17px 33px rgba(60, 65, 43, .18);
    transform: translateY(-3px);
}

.home-article-image {
    display: block;
    min-height: 100%;
    background: #5a6b42;
}

.home-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-article-card:hover .home-article-image img {
    transform: scale(1.05);
}

.home-article-image.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    font-size: 38px;
}

.home-article-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 25px;
}

.home-article-content h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-article-content h3 a {
    color: #273022;
    text-decoration: none;
}

.home-article-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0;
    color: #53604d;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.home-article-readmore,
.home-article-readmore:hover,
.home-article-readmore:focus {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #344023;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.home-article-readmore:hover,
.home-article-readmore:focus {
    color: #84a916;
}

.home-article-readmore i {
    font-size: 9px;
}

.home-gallery-wrap {
    margin-top: 70px;
}

.home-gallery-heading {
    padding-bottom: 4px;
}

.home-gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 5px;
    color: #72824f;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-gallery-kicker i {
    color: #84a546;
    font-size: 12px;
}

.home-gallery-heading h2 {
    margin: 0;
    color: #4e5934;
    font-size: clamp(30px, 2.4vw, 38px);
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.home-gallery-heading p {
    margin: 8px 0 0;
    color: #68735f;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.home-gallery-see-all,
.home-gallery-see-all:hover,
.home-gallery-see-all:focus {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding: 9px 15px;
    border-radius: 999px;
    color: #fff;
    background: #f39a35;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.home-gallery-see-all:hover,
.home-gallery-see-all:focus {
    color: #fff;
    background: #d87b1b;
    transform: translateY(-2px);
}

.home-gallery-see-all i {
    font-size: 10px;
}

.home-gallery-card,
.home-gallery-card:hover,
.home-gallery-card:focus {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    border-radius: 9px;
    color: #fff;
    background: #4e5934;
    box-shadow: 0 11px 22px rgba(48, 57, 34, .15);
    text-decoration: none;
}

.home-gallery-card::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(12, 20, 8, .04) 38%, rgba(13, 25, 8, .75) 100%);
}

.home-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-gallery-card:hover img,
.home-gallery-card:focus img {
    transform: scale(1.07);
}

.home-gallery-card.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.home-gallery-card span {
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.25;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .home-discover-section {
        padding: 64px 0 70px;
    }

    .home-gallery-wrap {
        margin-top: 55px;
    }

    .home-gallery-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 0;
    }

    .home-gallery-heading p {
        display: none;
    }

    .home-gallery-see-all {
        flex: 0 0 auto;
        margin-top: 0;
    }

    .home-gallery-card {
        height: 235px;
    }
}

@media (max-width: 767.98px) {
    .home-discover-section {
        padding: 52px 0 58px;
    }

    .home-discover-section .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-discover-heading {
        margin-bottom: 20px;
    }

    .home-discover-heading h2 {
        font-size: 29px;
    }

    .home-discover-kicker {
        font-size: 10px;
    }

    .home-discover-title-row {
        gap: 10px;
    }

    .home-discover-title-line {
        width: 38px;
    }

    .home-discover-description {
        padding: 0 14px;
        font-size: 12px;
    }

    .home-discover-see-all {
        min-width: 138px;
        font-size: 11px;
    }

    .home-gallery-heading {
        align-items: end;
    }

    .home-gallery-kicker {
        font-size: 10px;
    }

    .home-gallery-heading h2 {
        font-size: 29px;
    }

    .home-gallery-see-all {
        padding: 8px 13px;
        font-size: 10px;
    }

    .home-article-card {
        min-height: 170px;
        grid-template-columns: 38% 1fr;
        border-radius: 17px;
    }

    .home-article-content {
        padding: 17px;
    }

    .home-article-content h3 {
        font-size: 15px;
    }

    .home-article-content p {
        font-size: 11px;
        -webkit-line-clamp: 3;
    }

    .home-article-readmore {
        margin-top: 9px;
        font-size: 10px;
    }

    .home-gallery-wrap {
        margin-top: 44px;
    }

    .home-gallery-card {
        height: 205px;
    }
}

/* Legacy Tour Program styles remain below for pages not migrated yet. */
/* tour */

.tour-contain {
    font-family: 'Kanit', sans-serif;
}
.tour-content hr {
    color: #EBCB5E;
}
.tour-contain p {
    font: 16px/1.5 'Kanit', sans-serif;
    font-weight: 200;
    color: #000;
    text-decoration: none;
}

.tour-contain h1 {
    font: 38px/1.5 'Kanit', sans-serif;
    font-weight: 300;
    color: #fff;
}

.tour-contain h2 {
    font: 28px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #2f5d22;
}

.tour-contain h3 {
    font: 18px/1.4 'Kanit', sans-serif;
    font-weight: 400;
    color: #2f5d22;
}
.tour-contain span {
    font: 16px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #2f5d22;
}

.tour-contain a {
    font: 15.89px/1 'Kanit', sans-serif;
    font-weight: 300;
    line-height: 1.5em;
    color: #000;
    text-decoration: none;
}
.tour-contain ul {
	list-style-type: disc;
	padding-left: 80px;
  }
  
  .tour-contain li {
	margin-bottom: 8px;
  }
  .tour-contain ul li::marker {
	color: #426527; /* เปลี่ยนสีจุด */
	font-size: 1em; /* ขยายจุด */
  }
/* layout */
.tour-contain {
    background: #fff;
}

.tour-heading-section {
    padding: 18px 0 12px;
    background: #eef1f3;
}

.tour-heading-section .container {
    max-width: 1040px;
}

.tour-heading-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.tour-heading-bar h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    color: #2C4E1E;
}

.tour-see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 74px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e8b33f;
    color: #000 !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.tour-see-all:hover {
    background: #f0bf4f;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.tour-heading-text {
    max-width: 720px;
    margin: 8px 0 0;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    color: #4d5a47 !important;
}

/* กัน gutter ของ bootstrap */
.tour-contain .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.tour-item {
    background: #fff;
}

.tour-contain > .row {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    /* padding-bottom: 34px; */
}

.tour-program-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f8ef;
    box-shadow: 0 2px 8px rgba(37, 50, 31, 0.12);
}

.tour-program-photo {
    position: absolute;
    top: 50%;
    z-index: 0;
    width: min(64%, 640px);
    aspect-ratio: 4 / 3;
    transform: translateY(-50%);
    overflow: hidden;
}

.tour-program-photo::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 46%;
    pointer-events: none;
}

.tour-program-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-image-right .tour-program-photo {
    right: 0;
}

.tour-card-image-left .tour-program-photo {
    left: 0;
}

.tour-card-image-right .tour-program-photo::before {
    left: 0;
    background: linear-gradient(90deg, #f8f8ef 0%, rgba(248, 248, 239, 0.86) 34%, rgba(248, 248, 239, 0) 100%);
}

.tour-card-image-left .tour-program-photo::before {
    right: 0;
    background: linear-gradient(270deg, #f8f8ef 0%, rgba(248, 248, 239, 0.86) 34%, rgba(248, 248, 239, 0) 100%);
}

.tour-program-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.tour-program-card:not(.tour-card-image-left):not(.tour-card-image-right)::before {
    background: linear-gradient(90deg, rgba(248, 248, 239, 0.99) 0%, rgba(248, 248, 239, 0.98) 28%, rgba(248, 248, 239, 0.86) 40%, rgba(248, 248, 239, 0.58) 52%, rgba(248, 248, 239, 0.22) 65%, rgba(248, 248, 239, 0) 78%);
}

.tour-card-image-right::before {
    background: linear-gradient(90deg, rgba(248, 248, 239, 0.99) 0%, rgba(248, 248, 239, 0.98) 28%, rgba(248, 248, 239, 0.86) 40%, rgba(248, 248, 239, 0.58) 52%, rgba(248, 248, 239, 0.22) 65%, rgba(248, 248, 239, 0) 78%);
}

.tour-card-image-left::before {
    background: linear-gradient(270deg, rgba(248, 248, 239, 0.99) 0%, rgba(248, 248, 239, 0.98) 28%, rgba(248, 248, 239, 0.86) 40%, rgba(248, 248, 239, 0.58) 52%, rgba(248, 248, 239, 0.22) 65%, rgba(248, 248, 239, 0) 78%);
}

.tour-program-content {
    position: relative;
    z-index: 2;
    width: min(48%, 430px);
    padding: 42px 0 34px 44px;
}

.tour-card-image-left .tour-program-content {
    margin-left: auto;
    padding-left: 0;
    padding-right: 44px;
}

.tour-program-content h2 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
}

.tour-program-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 5px 14px;
    border-radius: 2px;
    background: #2C4E1E;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
}

.tour-program-title {
    margin: 0 0 8px;
    font-size: 13px !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    text-transform: uppercase;
    color: #2d3329 !important;
}

.tour-program-price,
.tour-program-child {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    color: #000;
}

.tour-program-child {
    margin-top: 4px;
    font-size: 14px;
}

.tour-program-content .btn-book-tour {
    margin-top: 18px;
}

.tour-program-content .btn-book-tour {
    background: #2C4E1E;
    color: #fff !important;
    border-radius: 2px;
    border: 0;
    box-shadow: none;
    padding: 8px 18px;
    font-size: 11px !important;
}

.tour-program-content .btn-book-tour:hover {
    background: #365f26;
}

/* Mobile */
@media (min-width: 340px) and (max-width: 740px) {
.tour-contain span {
    font: 16px/1.4 'Kanit', sans-serif;
    font-weight: 400;
    color: #2f5d22;
}

.tour-heading-section {
    padding: 20px 0 10px;
}

.tour-heading-bar {
    align-items: flex-start;
}

.tour-heading-bar h1 {
    font-size: 26px;
}

.tour-contain > .row {
    padding: 0 14px 28px;
    gap: 14px;
}

.tour-program-card {
    min-height: 430px;
}

.tour-program-photo {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: none;
}

.tour-program-photo::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 62%;
    background: linear-gradient(180deg, #f8f8ef 0%, rgba(248, 248, 239, 0.86) 35%, rgba(248, 248, 239, 0) 100%) !important;
}

.tour-card-image-right .tour-program-photo,
.tour-card-image-left .tour-program-photo {
    right: auto;
    left: 0;
}

.tour-program-card::before {
    background: linear-gradient(180deg, rgba(248, 248, 239, 0.96) 0%, rgba(248, 248, 239, 0.91) 49%, rgba(248, 248, 239, 0.22) 100%);
}

.tour-program-content {
    width: 100%;
    padding: 28px 24px;
}

.tour-card-image-left .tour-program-content {
    margin-left: 0;
    padding: 28px 24px;
}

.tour-program-content h2 {
    font-size: 17px;
}

.tour-program-title {
    font-size: 12px !important;
}
}

/* TOP DESTINATIONS */
.top-destination-section {
    padding: 36px 0 0;
    background: #474747;
}

.top-destination-heading {
    max-width: 1040px;
}

.top-destination-heading-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.top-destination-heading h1 {
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    background: transparent;
}

.top-destination-grid {
    display: grid;
    grid-template-columns: 2.2fr repeat(6, 1fr);
    grid-template-rows: 2.25fr 2fr;
    aspect-ratio: 8.2 / 4.25;
    gap: 0;
    width: 100%;
}

.top-destination-item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 245px;
    text-decoration: none;
    background: #24301f;
    z-index: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255,255,255,0.16);
}

.top-destination-item-1 {
    grid-column: 1;
    grid-row: span 2;
}

.top-destination-item-2 {
    grid-column: 2 / 5;
    grid-row: 1;
}

.top-destination-item-3 {
    grid-column: 5 / 8;
    grid-row: 1;
}

.top-destination-item-4 {
    grid-column: 2 / 4;
    grid-row: 2;
}

.top-destination-item-5 {
    grid-column: 4 / 6;
    grid-row: 2;
}

.top-destination-item-6 {
    grid-column: 6 / 8;
    grid-row: 2;
}

.top-destination-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.top-destination-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(23, 35, 19, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.top-destination-item span {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.top-destination-item:hover img {
    opacity: 0.55;
    transform: scale(1.035);
}

.top-destination-item:hover::after,
.top-destination-item:hover span {
    opacity: 1;
}

.top-destination-item:hover span {
    transform: translateY(-50%) scale(1.02);
}

@media (max-width: 991.98px) {
    .top-destination-section {
        padding-top: 26px;
    }

    .top-destination-heading-bar {
        margin-bottom: 20px;
    }

    .top-destination-heading h1 {
        font-size: 25px;
    }

    .top-destination-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 220px;
        aspect-ratio: auto;
    }

    .top-destination-item,
    .top-destination-item-1,
    .top-destination-item-2,
    .top-destination-item-3,
    .top-destination-item-4,
    .top-destination-item-5,
    .top-destination-item-6 {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 575.98px) {
    .top-destination-heading-bar {
        align-items: flex-start;
        padding: 0 14px;
    }

    .top-destination-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .top-destination-item span {
        opacity: 1;
        font-size: 21px;
    }

    .top-destination-item::after {
        opacity: 1;
        background: rgba(23, 35, 19, 0.28);
    }
}
.img-box {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    z-index: 2;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.tour-img {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* กันเส้นรอยต่อระหว่างรูปกับข้อความ */
.left-img .img-box {
    margin-right: -2px;
}

.right-img .img-box {
    margin-left: -2px;
}

/* เอฟเฟกต์เฟดรูป */
.left-img .img-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 3;
}

.right-img .img-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 3;
}

/* ฝั่งข้อความ */
.text-side {
    width: 100%;
    min-height: 390px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* ทำให้กล่องข้อความแคบเหมือน col-lg-4 */
.text-box {
    width: 100%;
    max-width: 420px;
    padding: 20px 10px;
}

/* สลับตำแหน่งกล่องข้อความ */
.left-img .text-side {
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 40px;
}

.right-img .text-side {
    justify-content: flex-end;
    padding-left: 40px;
    padding-right: 40px;
}

.text-box h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2f5d22;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.tour-summary {
    margin-bottom: 18px;
}

.tour-pricing {
    margin-bottom: 22px;
    padding: 16px 18px;
    background: #f7f4ea;
    border: 1px solid rgba(47, 93, 34, 0.10);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(56, 74, 39, 0.06);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(47, 93, 34, 0.10);
}

.price-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.price-row:first-child {
    padding-top: 0;
}

.price-label {
    font-size: 14px;
    line-height: 1.5;
    color: #4f5b4f;
    font-weight: 500;
}

.price-value {
    font-size: 18px;
    line-height: 1.2;
    color: #2f5d22;
    font-weight: 700;
    white-space: nowrap;
}

.btn-book-tour {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 22px;
    border-radius: 30px;
    background: linear-gradient(to bottom, #c7c39f, #b0ac87, #8f8a6b);
    border: 1px solid #8f8a6b;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 3px 5px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.btn-book-tour:hover {
    color: #4B6430;
    background: linear-gradient(to bottom, #d6d2ac, #b0ac87, #7a755a);
    text-decoration: none;
}

.package-summary-card {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(29, 107, 65, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-detail-pricing {
    margin-left: auto;
    max-width: 100%;
}

.package-detail-summary {
    align-items: flex-start;
    padding: 24px 18px !important;
    row-gap: 18px;
}

.package-detail-highlight {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
    color: #4f5b4f;
    padding-right: 0;
}

.package-detail-highlight span {
    display: inline-flex;
    align-items: center;
    color: #2f5d22;
    font-weight: 300;
}

.package-detail-duration {
    margin-top: 10px !important;
    font-size: 15px;
    line-height: 1.6;
    color: #5c6a56;
}

.package-detail-duration span {
    display: inline-flex;
    align-items: center;
    color: #2f5d22;
    font-weight: 300;
}

.faq-heading-icon,
.section-heading-icon {
    color: #d3a947;
}

.faq-section-heading {
    max-width: 680px;
    /* margin: 0 auto; */
}

.faq-heading-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(210, 169, 58, 0.12);
    border: 1px solid rgba(210, 169, 58, 0.2);
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7f6a24;
}

.faq-section-heading h2 {
    margin-bottom: 8px;
}

.faq-heading-subtext {
    font-size: 15px;
    line-height: 1.7;
    color: #66705f;
}

.package-detail-accordion-card {
    padding: 0 !important;
    overflow: hidden;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    background: transparent !important;
}

.package-detail-accordion-card.package-summary-card,
.package-detail-accordion-card.package-summary-card:hover {
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.package-detail-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: #fff;
    --bs-accordion-active-color: #2f5d22;
}

.package-detail-accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #2f5d22 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf4 100%) !important;
    padding: 20px 24px;
    border-bottom: 0;
    box-shadow: none !important;
}

.package-detail-accordion-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.package-detail-accordion-label {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a7c61;
    background: rgba(196, 214, 186, 0.35);
    border-radius: 999px;
}

.package-detail-accordion-title {
    display: inline-flex;
    align-items: center;
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.package-detail-accordion-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6a7c61 !important;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.package-detail-accordion-button:not(.collapsed) {
    color: #2f5d22 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf4 100%) !important;
    box-shadow: none !important;
}

.package-detail-accordion-button::after {
    margin-left: 0;
    filter: brightness(0) saturate(100%) invert(30%) sepia(14%) saturate(1110%) hue-rotate(58deg) brightness(94%) contrast(87%);
    display: block !important;
}

.package-detail-accordion-button:not(.collapsed) .package-detail-accordion-hint {
    background: transparent;
}

.package-detail-accordion-body {
    padding: 0 24px 24px;
    background: linear-gradient(180deg, #fff 0%, #fcfbf7 100%);
}

.package-detail-accordion-body p {
    color: #4f5b4f;
    line-height: 1.8;
}

.package-summary-card  hr {
    color: #EBCB5E;
}

.package-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.policy-card-row {
    margin-top: 0.5rem;
}

.policy-card {
    padding: 22px 18px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #4f752f 0%, #446526 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.policy-card h1 {
    font: 28px 'Kanit', sans-serif;
    font-weight: 300;
    color: #ffffff;
}

.policy-card-title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-card-title h1{
    font: 28px 'Kanit', sans-serif;
    font-weight: 300;
    margin: 0 0 10px;
    color: #ffffff;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-card-text {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.policy-card--inclusion .policy-card-title {
    color: #ffffff;
}

.policy-book-btn {
    font-family: 'Kanit', sans-serif;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #9d976f 0%, #8f8a6b 55%, #7f7a5f 100%);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, letter-spacing 0.25s ease;
}

.policy-book-btn i {
    font-size: 0.95em;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.policy-book-btn:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #aaa37a 0%, #8f8a6b 55%, #767156 100%);
    transform: translateY(-3px);
    letter-spacing: 2px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

@media (max-width: 991px) {
    .policy-card {
        padding: 18px 16px;
    }

    .policy-card h1 {
        font-size: 24px;
        line-height: 1.15;
    }

    .policy-card-title {
        font-size: 24px;
        line-height: 1.15;
    }

    .policy-book-btn {
        font-size: 16px;
        padding: 15px 18px;
        border-radius: 12px;
    }
}

/* มือถือ */
@media (max-width: 991px) {
    .img-box {
        height: 260px;
        margin-left: 0;
        margin-right: 0;
    }

    .text-side {
        min-height: auto;
        padding: 0;
    }

    .text-box {
        max-width: 100%;
        padding: 30px 20px 35px;
    }

    .left-img .text-side,
    .right-img .text-side {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
    }

    .left-img .img-box:after,
    .right-img .img-box:after {
        width: 100%;
        height: 35%;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }

    .text-box h2 {
        font-size: 24px;
    }

    .tour-pricing {
        padding: 14px 16px;
    }

    .package-detail-pricing {
        max-width: 100%;
    }

    .package-detail-summary {
        padding: 18px 14px !important;
        row-gap: 14px;
    }

    .package-detail-highlight {
        max-width: 100%;
        padding-right: 0;
    }

    .package-detail-duration {
        font-size: 13px;
    }

    .faq-heading-badge {
        padding: 5px 10px !important;
        font-size: 14px !important;
        letter-spacing: 0.07em;
    }

    .faq-heading-badge .faq-heading-icon {
        font-size: 20px !important;
        line-height: 1 !important;
    }

    .faq-heading-subtext {
        font-size: 13px;
        line-height: 1.6;
    }

    .package-detail-accordion-button {
        padding: 18px 18px;
        align-items: flex-start;
    }

    .package-detail-accordion-copy {
        gap: 5px;
    }

    .package-detail-accordion-title {
        font-size: 20px !important;
    }

    .package-detail-accordion-hint {
        min-width: auto;
        padding: 8px 12px;
        font-size: 9px !important;
    }

    .package-detail-accordion-body {
        padding: 0 18px 18px;
    }

    .price-row {
        gap: 10px;
        align-items: flex-start;
    }

    .price-label {
        font-size: 12px !important;
    }

    .price-value {
        font-size: 14px !important;
    }
}
.underline-green {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.underline-green::after {
  content: "";
  display: block;
  width: 120px;       /* ความยาวเส้น */
  height: 3px;       /* ความหนาเส้น */
  background: #5d7a4e;
  margin: 6px auto 0;  /* ให้เส้นอยู่ตรงกลางใต้ข้อความ */
  border-radius: 2px;  /* ทำให้ปลายเส้นโค้งนิดหน่อย */
}
@media (max-width: 992px) {
  .service-contain p {
    font: 16px/1.5 'Kanit', sans-serif;
    font-weight: 200;
    color: #fff;
    text-decoration: none;
    }
}



/* blog */
.blog {
    font-size: 16px;
    font-family: 'BebasNeue', Kanit;
    line-height: 1.4;
    background-color: #fff;
    /* height: 800px;     */
}


.blog h1 {
    font: 28px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #336D48;
    font-weight: 200;
}

.blog h2 {
    font-size: 16px;
    font-weight: 300;
    color: #000
}

.blog h3 {
    font: 36px/1 'Kanit', sans-serif;
    font-weight: 300;
    color: #4E6B2F;
}

.blog h4 {
    font-size: 20px;
    font-weight: 300;
    color: #000;
}



.blog p {
    font: 16.03px/1.5 'Kanit', sans-serif;
    font-weight: 300;
    color: #979797;

}

.blog button {
    font: 16.24px/1.6 'BebasNeue', Kanit;
    font-weight: 300;
    line-height: 1.5em;

}



.sharebutton {
    float: right;
    vertical-align: top;

}
.line-content {
    border-top: 4px solid #F2C945;
    border-radius: 10px;
    width: 100px;
}

.line-type {
    border-top: 4px solid #F2C945;
    border-radius: 10px;
    width: 100%;
}
.line-qt {
    border-top: 4px solid #fff;
    border-radius: 10px;
    width: 200px;
}
/* ความสูงปกติ (คอมพิวเตอร์) */
.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}
@media (max-width: 768px) {
.map-wrapper iframe {
    width: 100%;
    height: 250px;
    display: block;
}
}
/* Contact*/
.contact_container {
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
}


.contact_container h1 {
    font: 38px 'Kanit', sans-serif;
    font-weight: 100;
    line-height: 1.2;
    color: #fff;
}
.contact_container i {
    color: #EAC663;
}

.contact_container hr {
    color: #999;
}

.contact_container h2 {
    font: 18px 'Kanit', sans-serif !important;
    font-weight: 200 !important;
    color: #fff !important;
    line-height: 1.5em !important;
}

.contact_container h3 {
    font: 20px 'Kanit', sans-serif;
    font-weight: 200;
    color: #000;
}


.contact_container p {
    font: 14px 'Kanit', sans-serif;
    font-weight: 200 !important;
    color: #fff!important;
    line-height: 1.5em;
}
.contact_container a {
    font: 20px 'Kanit', sans-serif;
    font-weight: 300 !important;
    color: #000!important;
    line-height: 1.5em;
}
/* Mobile */
@media (min-width: 330px) and (max-width: 740px) {

    .contact_container h1 {
   font: 38px 'Kanit', sans-serif;
    font-weight: 100;
    line-height: 1.2;
    color: #fff;
    }
.contact_container h2 {
   font: 18px 'Kanit', sans-serif !important;
    font-weight: 200 !important;
    color: #fff !important;
    line-height: 1.5em !important;
}
}
/* ปุ่ม contact us */
.contact-btn {
  font: 16px 'Kanit', sans-serif;
  display: block;
  text-align: center;
  background-color: #B2A76D; /* สีทองหลัก */
  color: #000;
  padding: 16px 0;
  border-radius: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 12px rgba(147, 105, 54, 0.25); /* เงาทองนุ่มๆ */
  transition: all 0.25s ease;
  margin-bottom: 20px;
}

.contact-btn:hover {
  background-color: #B2A76D; /* ทองอ่อนขึ้นนิดหน่อย */
  box-shadow: 0 10px 20px rgba(147, 105, 54, 0.35);
  transform: translateY(-3px) scale(1.02);
  color: #000;
  text-decoration: none;
}

.contact-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(147, 105, 54, 0.3);
}

.contact-btn i {
  color: #000;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-btn:hover i {
  transform: scale(1.15);
  color: #222;
}

/* Home Contact */
.home-contact-section {
    position: relative;
    z-index: 20;
    padding: 0;
    background: #eef1f3;
}

.home-contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    background: #474747;
}

.home-contact-title h1 {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.home-contact-inner {
    max-width: 1040px;
    padding-top: 38px;
    padding-bottom: 44px;
}

.home-contact-info {
    min-height: 124px;
    color: #001f3b;
}

.home-contact-info i {
    display: block;
    margin-bottom: 12px;
    font-size: 31px;
    color: #000;
}

.home-contact-info h2,
.home-contact-qr h3 {
    margin: 0 0 7px;
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    color: #000 !important;
}

.home-contact-info p,
.home-contact-info a {
    display: block;
    margin: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.45;
    color: #001f3b !important;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.home-contact-info a:hover {
    color: #2C4E1E !important;
    text-decoration: none;
}

.home-contact-qr-row {
    position: relative;
    z-index: 20;
    margin-top: 5px;
}

.home-contact-qr {
    position: relative;
    z-index: 20;
}

.home-contact-qr h3 {
    margin-bottom: 14px;
}

.home-contact-qr-link {
    display: inline-block;
    position: relative;
    z-index: 30;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
    touch-action: manipulation;
}

.home-contact-qr-link:hover,
.home-contact-qr-link:focus,
.home-contact-qr-link:active {
    color: inherit;
    text-decoration: none;
}

.home-contact-qr-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 142px;
    min-height: 46px;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: linear-gradient(180deg, #4f7b33 0%, #426B29 100%);
    color: #fff !important;
    font-family: 'Kanit', sans-serif;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
    text-align: center;
    text-decoration: none;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    touch-action: manipulation;
    position: relative;
    z-index: 5;
    -webkit-tap-highlight-color: rgba(255,255,255,0.16);
    box-shadow: 0 10px 20px rgba(66, 107, 41, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-contact-qr-button,
.home-contact-qr-button::before,
.home-contact-qr-button:hover,
.home-contact-qr-button:focus,
.home-contact-qr-button:active {
    color: #fff !important;
}

.contact_container .home-contact-qr-button,
.contact_container .home-contact-qr-button::before,
.contact_container .home-contact-qr-button:hover,
.contact_container .home-contact-qr-button:focus,
.contact_container .home-contact-qr-button:active {
    color: #fff !important;
}

.home-contact-qr-button::before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}

.home-contact-qr-button-wechat::before {
    content: "\f1d7";
}

.home-contact-qr-button-whatsapp::before {
    content: "\f232";
}

.home-contact-qr-button-line::before {
    content: "\f3c0";
}

.home-contact-qr-button:hover {
    background: linear-gradient(180deg, #5c8a3e 0%, #426B29 100%);
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(66, 107, 41, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.home-contact-qr-button-static,
.home-contact-qr-button-static:hover {
    cursor: default;
    background: linear-gradient(180deg, #4f7b33 0%, #426B29 100%);
    transform: none;
}

.home-contact-qr img {
    display: block;
    width: min(100%, 178px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto;
    background: #fff;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .top-destination-item:hover img {
        opacity: 1;
        transform: none;
    }

    .home-contact-qr-button:hover {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .home-contact-title {
        min-height: 72px;
    }

    .home-contact-title h1 {
        font-size: 25px;
    }

    .home-contact-inner {
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .home-contact-info {
        min-height: auto;
    }
}
/* page contact */
.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-item {
  flex: 1;
  text-align: center;
  padding: 10px 0;
}

.icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #EAC663;
  display: flex;
  align-items: center;
  justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.contact-item a:hover .icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.iconproduct {
  width: 65px;
  height: 65px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #0f039d;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item a:hover .iconproduct{
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.title {
  font-size: 20px;
  font-weight: bold;
}

.value {
  font-size: 18px;
  color: #555;
}

.divider {
  width: 1px;
  height: 90px;
  background: #ddd;
}

.green-addr {
    position: relative;
    background-color: #fff;
}

.green-addr h1 {
    font: 18.48px/1 'Kanit', sans-serif;
    font-weight: 500;
    color: #624827;
}

.green-addr p {
    font: 14px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #624827;
}
@media (max-width: 768px) {
  .contact-bar {
    flex-direction: column;
  }

  .contact-item {
    width: 100%;
  }

  .divider {
    width: 80%;
    height: 1px;
    margin: 15px auto;
  }
  .title {
  font-size: 16px;
  font-weight: bold;
}

.value {
  font-size: 14px;
  color: #555;
}
}
/* Article */


.article-contain {
    /* background: url(../images/cover/bg-page-about.png) center no-repeat;
    background-size: cover; */
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;    
}

.article-contain hr {
    color: #b0b8b9a0 !important;
    border-top-width: 1px;
    opacity: 1;
}

.article-contain label {
    font-weight: 400;
}

.article-contain a {
    font-size: 16px;
    color: #000;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    text-decoration: none;   
}
.article-contain h1 {
    font: 28px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #012849;
}

.article-contain h2 {
    font: 14px/1.4 'BebasNeue', Kanit;
    font-weight: 300;
    color: #999;
}

.article-contain h3 {
    font: 18px/1.4 'Kanit', sans-serif;
    font-weight: 300;
}

.article-contain h4 {
    font: 16px/1.4 'BebasNeue', Kanit;
    font-weight: 300;
}

.article-contain h5 {
    font: 14.24px/1.6 'Kanit', sans-serif;
    font-weight: 300;
    color: #012849;
    line-height: 1.5em;
}

.article-contain h6 {
    font: 35px/1 '2005_iannnnnGMO';
}

.article-contain p,
.article-contain li {
    font: 16.24px/1.6 'Kanit', sans-serif;
    font-weight: 300;
    color: #666;
    line-height: 1.5em;

}

/* Modern article detail */
.article-page {
    background:
        radial-gradient(circle at top left, rgba(179, 167, 109, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(51, 109, 72, 0.10), transparent 28%),
        #f6f4ee;
    color: #1b1b1b;
}

.article-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(17, 42, 25, 0.22), rgba(51, 109, 72, 0.16)),
        url('./images/cover/cover.png') center/cover no-repeat;
    box-shadow: inset 0 -24px 48px rgba(0, 0, 0, 0.10);
}

.article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 48%);
    pointer-events: none;
}

.article-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.article-kicker--plain {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: block;
    margin-bottom: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0;
}

.article-hero-title {
    margin: 0;
    color: #fff !important;
    font: 38px/1.5 'Kanit', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

.article-line {
    border-top: 4px solid #F2C945;
    border-radius: 10px;
    width: 80px;
}

.article-meta {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    letter-spacing: 0.3px;
}

.article-meta i {
    color: #F2C945;
    margin-right: 8px;
}

.article-date {
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
}

.article-progress {
    height: 4px;
    background: rgba(51, 109, 72, 0.10);
}

.article-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #B2A76D, #336D48);
    transition: width 0.15s linear;
}

.article-shell {
    position: relative;
}

.article-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(20, 40, 30, 0.10);
    backdrop-filter: blur(8px);
}

.article-card-body {
    padding: 22px;
}

.article-share {
    padding: 16px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(178, 167, 109, 0.16), rgba(51, 109, 72, 0.08));
}

.article-cover {
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.article-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.article-body {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #23312a;
}

.article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
}

.article-body table {
    width: 100%;
    margin: 18px 0;
    overflow: hidden;
    border-radius: 14px;
}

.article-gallery {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.article-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.article-gallery-img {
    background-size: cover;
    background-position: center;
}

.article-sidebar {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 14px;
}

.article-sidebar-head {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #336D48, #B2A76D);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(51, 109, 72, 0.18);
}

.article-mini-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.article-mini-thumb {
    border-radius: 14px;
    min-height: 96px;
    background-size: cover;
    background-position: center;
}

.article-mini-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-mini-title {
    margin: 0 0 6px;
    color: #1f1f1f;
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.article-mini-desc {
    margin: 0;
    color: #66756d;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .article-sidebar {
        position: static;
    }

    .article-card-body {
        padding: 18px;
    }

    .article-mini-card {
        grid-template-columns: 84px 1fr;
    }
}

@media (max-width: 575.98px) {
    .article-hero {
        background-position: center top;
    }

    .article-card {
        border-radius: 18px;
    }

    .article-mini-card {
        grid-template-columns: 78px 1fr;
    }

    .article-mini-thumb {
        min-height: 78px;
    }

    .article-hero-title {
        font-size: 24px;
    }
}

/*page portfolio*/

.portfolio-contain {
    background: url(../images/cover/portfolio-bg.png) center no-repeat;
    background-size: cover;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;    
}

.portfolio-contain hr {
    color: #012849 !important;
    border-top-width: 1px;
    opacity: 1;
}

.portfolio-contain label {
    font-weight: 400;
}

.portfolio-contain a {
    font-size: 16px;
    color: #000;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    text-decoration: none;   
}
.portfolio-contain h1 {
    font: 48px/1.4 'Adobe', Kanit;
    font-weight: 300;
    color: #012849;
}

.portfolio-contain h2 {
    font: 14px/1.4 'BebasNeue', Kanit;
    font-weight: 300;
    color: #999;
}

.portfolio-contain h3 {
    font: 18px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #ecc44a;
}

.portfolio-contain h4 {
    font: 18px/1.4 'Kanit', sans-serif;
    font-weight: 300;
    color: #999;

}

.portfolio-contain h5 {
    font: 14.24px/1.6 'Kanit', sans-serif;
    font-weight: 300;
    color: #012849;
    line-height: 1.5em;
}


.portfolio-contain p,
.portfolio-contain li {
    font: 14.24px/1.6 'Kanit', sans-serif;
    font-weight: 300;
    color: #666;
    line-height: 1.5em;

}


.p-contain {
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    /* background: #F3F3F3; */

}

.p-contain p {
    font-size: 16px;
    font-family: 'BebasNeue', Kanit;;
    line-height: 1.4;
    /* background: #F3F3F3; */

}


.p-contain hr {
    background: #0071bd;
}

.p-contain h1 {
    font: 42px/1.4 'BebasNeue', Kanit;
    font-weight: 300;
    color: #75aeb6;

}

.p-contain h2 {
    font: 16px 'BebasNeue', Kanit;;
    color: #ff9b62;
    line-height: 1 em;
}


.p-contain a {
    font: 16px 'BebasNeue', Kanit;;
}

/* Welcome */
.welcome-contain {
    background: #fff;
}

.accordion-button::after {
			display: none !important; /* ซ่อนลูกศร */
		}
		.accordion-button {
			background: #fff !important;  /* พื้นหลังขาว */
			color: #000 !important;       /* ตัวอักษรดำ */
			box-shadow: none !important;  /* เอาเงาด้านในออก */
		}
		.accordion-button:hover {
			background: #f8f9fa !important; /* hover ให้เปลี่ยนเป็นเทาอ่อน */
			color: #2566CC !important;
		}
        .accordion-button:not(.collapsed) {
            color: #2566CC;
            background-color: #eaf2ff;
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
        }
        .accordion-item {
            border-radius: 12px !important;
            overflow: hidden;
            border: none;
            margin-bottom: 12px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }
        .accordion-body {
            background: #ffffff;
            font-size: 0.95rem;
            line-height: 1.6em;
        }
        .accordion-body ul li a {
            text-decoration: none;
            color: #333;
            transition: color 0.2s ease;
        }
        .accordion-body ul li a:hover {
            color: #0f039d;
        }
        .fa-angle-double-right {
            margin-right: 0px;
        }
		.accordion-header a:hover {
		background: #f8f9fa;
		color: #0f039d;
	}
    .answer-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-stack {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        line-height: 1;
    }

    .faq-stack .fa-stack-2x {
        font-size: 40px;
    }

    .faq-stack .fa-stack-1x {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 16px;
        color: #fff;
        line-height: 1;
    }

    .faq-stack-question .fa-stack-2x {
        color: #4B6431;
    }

    .faq-stack-answer .fa-stack-2x {
        color: #F2C945;
    }

    .faq-question-text,
    .faq-answer-text {
        flex: 1 1 auto;
        min-width: 0;
        line-height: 1.6;
    }

    .faq-question-text {
        padding-top: 2px;
    }

    .faq-answer-text {
        margin-top: 2px;
    }

    @media (max-width: 767px) {
        .faq-stack {
            flex-basis: 34px;
            width: 34px;
            height: 34px;
        }

        .faq-stack .fa-stack-2x {
            font-size: 34px;
        }

        .faq-stack .fa-stack-1x {
            font-size: 14px;
        }

        .answer-row {
            gap: 10px;
        }
    }



.imgtransparent {
    opacity: 1;
    /* ค่าความจาง */
    filter: alpha(opacity=100);
    /* สำหรับ IE8 ขึ้นไป */
}

.imgtransparent:hover {
    opacity: 0.5;

    /* ค่าความจาง */
    filter: alpha(opacity=40);
    /* สำหรับ IE8 ขึ้นไป */
}

.service-box {
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    font-weight: 200;
    background-color: #001c37;
    /* height: 350px; */

}

.service-box:hover {
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    font-weight: 200;
    background-color: #2d75fd;
    /* height: 350px; */

}

.service-box2 {
    font-size: 24px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    font-weight: 200;
    background-color: #001c37;

}

.service-box2:hover {
    font-size: 24px;
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
    font-weight: 200;
    background-color: #2d75fd;

}

.service-box hr {
    color: #CACACA !important;
    /* border-top-width: 2px; */
    border-top: 3px dotted #8c8b8b97;
    opacity: 1;
}

.service-box label {
    font-weight: 400;
}

.service-box h1 {
    font: 30px/1.4 'Kanit', sans-serif;
    font-weight: 400;
}

.service-box h2 {
    font-size: 24px;
}

.service-box p {
    font: 14px/1.4 'Kanit', sans-serif;
    font-weight: 300;
}

.service-box-text-1 {
    font: 18px/1.4 'Kanit', sans-serif;
    font-weight: 500;
    background-color: #EEEFF3;
    height: 380px;
}

.service-box-text-2 {
    font: 18px/1.4 'Kanit', sans-serif;
    font-weight: 500;
    background-color: #679A01;
    height: 400px;

}

/* News */
/* .news-item {} */

/* Social Link */
.social-link {
    position: relative;
}

.social-link h1 {
    font: 19px/1 'Kanit', sans-serif;
    font-weight: 500;
    color: #333;
}

.social-link h1 span {
    color: #eb2031;
}

.footer_container {
    /* position: relative; */
    z-index: 2;
    font-family: 'Kanit', sans-serif;
    color: #fff;
    background-color: #426B29;

}

.footer_container p {
    font: 13px/1.5 'Kanit', sans-serif;
    font-weight: 200 !important;
    color: #fff;
    margin-bottom: 0;
}

.footer_container h1 {
    font: 28px 'Adobe', Kanit; 
    font-weight: 200 !important;
    color: #fff;

}

.footer_container h2 {
    font: 36px 'Kanit', sans-serif;
    font-weight: 100 !important;
    color: #fff;
}


.footer_container a {
    font: 13px/1 'Kanit', sans-serif;
    font-weight: 200 !important;
    color: #fff;
    /* letter-spacing: 1px; */
}
.footer_container a:hover {
    font: 14px/1 'Kanit', sans-serif;
    font-weight: 200 !important;
    color: #B3A872;
    /* letter-spacing: 1px; */
}

.footer_box {
    position: relative;
    background-color: #000;

    /* padding-right: 5px; */

}
.footer_box p {
    font: 14px/1 'Kanit', sans-serif;
    color: #fff;
}


.footer_box h3 {
    font: 14px/1 'Kanit', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer_box img.hr1 {
    margin: 4px 0;
    display: block;
}

.footer_container .box1 p {
    margin-bottom: 0;
}



.footer_container ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.footer_container ul li {
    display: block;
}

.footer_container ul li a {
    font: 16px 'BebasNeue', Kanit; 
    font-weight: 400;
    text-decoration: none;
    color: #fff;
}



.footer {
    position: relative;
}

.footer p {
    font: 13.79px/1 'Kanit', sans-serif;
    font-weight: 200;
}

.google-review-section {
    padding: 34px 0;
    background: #fff;
    border-top: 1px solid rgba(66, 101, 39, 0.08);
}

.google-review-widget {
    position: relative;
    display: grid;
    grid-template-columns: 190px 34px minmax(0, 1fr) 34px;
    align-items: stretch;
    gap: 14px;
}

.google-review-summary {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    text-align: center;
    background: #fff;
}

.google-review-summary h2 {
    margin: 0 0 8px;
    font: 700 22px/1.2 'Kanit', sans-serif;
    color: #1f2d1a;
}

.google-review-place {
    max-width: 170px;
    margin: 0 auto 8px;
    color: #426527;
    font: 600 12px/1.35 'Kanit', sans-serif;
}

.google-review-stars,
.google-review-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbc04;
}

.google-review-star-empty {
    color: #d9d9d9;
}

.google-review-stars {
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}

.google-review-summary p {
    margin: 8px 0 6px;
    font: 400 13px/1.35 'Kanit', sans-serif;
    color: #586250;
}

.google-review-summary strong {
    color: #1f2d1a;
    font-weight: 700;
}

.google-review-logo {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.google-review-logo a {
    display: block;
    transition: opacity .2s ease, transform .2s ease;
}

.google-review-logo a:hover,
.google-review-logo a:focus {
    opacity: .78;
    transform: translateY(-1px);
}

.google-review-logo img {
    width: 104px;
    max-width: 100%;
    height: auto;
    display: block;
}

.google-review-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.google-review-track::-webkit-scrollbar {
    display: none;
}

.google-review-card {
    min-height: 170px;
    padding: 16px;
    background: #f7f7f7;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
}

.google-review-card__header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.google-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #426527 0%, #b3a872 100%);
    font-size: 18px;
    font-weight: 700;
}

.google-review-author h3 {
    margin: 0 0 2px;
    overflow: hidden;
    color: #1f2d1a;
    font: 700 14px/1.2 'Kanit', sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.google-review-author time {
    display: block;
    color: #8a8f86;
    font: 400 11px/1.2 'Kanit', sans-serif;
}

.google-review-g {
    color: #4285f4;
    font: 800 18px/1 'Kanit', sans-serif;
}

.google-review-card__stars {
    margin-bottom: 8px;
    font-size: 15px;
}

.google-review-card p {
    display: -webkit-box;
    min-height: 56px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #4a5145;
    font: 400 13px/1.45 'Kanit', sans-serif;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.google-review-card a {
    color: #9a9a9a;
    font: 400 12px/1 'Kanit', sans-serif;
    text-decoration: none;
}

.google-review-card a:hover {
    color: #426527;
}

.google-review-arrow {
    align-self: center;
    width: 34px;
    height: 52px;
    border: 0;
    background: transparent;
    color: #c6c6c6;
    font-size: 24px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.google-review-arrow:hover {
    color: #426527;
    transform: scale(1.08);
}

@media (max-width: 991.98px) {
    .google-review-widget {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .google-review-summary {
        min-height: auto;
        padding: 10px 14px 16px;
    }

    .google-review-arrow {
        display: none;
    }

    .google-review-track {
        grid-auto-columns: minmax(240px, 82%);
    }
}

/* Websetting */
.bg-blue-1 {
    background-color: #0071bd;
}

.bg-blue-2 {
    background-color: #0071bd;
}

.bg-soft-gray-1 {
    background-color: #f8f8f8;
}

.bg-soft-gray-2 {
    background-color: #ccc;
}

.font-color-orange {
    color: #ff9900;
}

.font-color-blue {
    color: #0071bd;
}

.font-color-gray-1 {
    color: #797979;
}

/* Simple Pager Nav */
ul.simplePagerNav {
    position: relative;
    z-index: 2;
    margin-top: 5px;
    text-align: center;
}

ul.simplePagerNav li {
    display: inline-block;
    padding: 3px;
    margin-bottom: 10px;
    font-family: georgia;
    width: 15px;
    text-align: center;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    margin: 0 2px;
    box-sizing: content-box;
}

ul.simplePagerNav li a {
    color: #00c9e0;
    text-decoration: none;
}

ul.simplePagerNav li.currentPage {
    background: #00c9e0;
}

ul.simplePagerNav li.currentPage a {
    color: #fff;
}

#scrollUp {
    right: 22px;
    bottom: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(179, 168, 114, 0.38);
    background: linear-gradient(135deg, #426527 0%, #6d8b45 100%);
    box-shadow: 0 12px 28px rgba(31, 52, 20, 0.24);
    color: #fff !important;
    font-family: 'Kanit', sans-serif;
    font-size: 0;
    line-height: 1;
    text-decoration: none;
    z-index: 1029;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#scrollUp::before {
    content: "\f062";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
}

#scrollUp:hover,
#scrollUp:focus {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(31, 52, 20, 0.28);
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 72px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: 'Kanit', sans-serif;
    pointer-events: none;
}

.floating-contact__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
}

.floating-contact__item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    border: 0;
    padding: 0;
    background: transparent;
    text-decoration: none;
    color: #24331a;
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.floating-contact.is-open .floating-contact__menu {
    pointer-events: auto;
}

.floating-contact.is-open .floating-contact__item {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.floating-contact__label {
    max-width: min(280px, calc(100vw - 105px));
    padding: 9px 14px;
    border: 1px solid rgba(179, 168, 114, 0.34);
    border-radius: 999px;
    background: rgba(255, 253, 247, 0.96);
    box-shadow: 0 10px 24px rgba(31, 52, 20, 0.16);
    color: #24331a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-contact__icon,
.floating-contact__toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(179, 168, 114, 0.38);
    color: #fff;
    background: linear-gradient(135deg, #426527 0%, #6d8b45 100%);
    box-shadow: 0 12px 28px rgba(31, 52, 20, 0.24);
    font-size: 20px;
    flex: 0 0 auto;
}

.floating-contact__toggle {
    border: 0;
    background: linear-gradient(135deg, #b3a872 0%, #426527 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
}

.floating-contact__toggle:hover,
.floating-contact__item:hover .floating-contact__icon {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(31, 52, 20, 0.28);
}

.floating-contact__item:hover .floating-contact__label {
    color: #426527;
    border-color: rgba(66, 101, 39, 0.32);
}

.floating-contact.is-open .floating-contact__toggle i {
    transform: rotate(-8deg);
}

.floating-contact__item:nth-child(1) {
    transition-delay: 0.03s;
}

.floating-contact__item:nth-child(2) {
    transition-delay: 0.06s;
}

.floating-contact__item:nth-child(3) {
    transition-delay: 0.09s;
}

.floating-contact__item:nth-child(4) {
    transition-delay: 0.12s;
}

.floating-contact__item:nth-child(5) {
    transition-delay: 0.15s;
}

@media (max-width: 767.98px) {
    .floating-contact {
        right: 12px;
        bottom: 72px;
    }

    #scrollUp {
        right: 12px;
        width: 48px;
        height: 48px;
    }

    .floating-contact__icon,
    .floating-contact__toggle {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .floating-contact__label {
        max-width: calc(100vw - 86px);
        font-size: 12px;
        padding: 8px 12px;
    }
}

.modal-content {
    font-family: 'Kanit', sans-serif;
}

.booknow-modal {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf7 0%, #f7f3e6 100%);
    box-shadow: 0 24px 60px rgba(31, 52, 20, 0.18);
}

.booknow-modal-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a7540;
    margin-bottom: 6px;
}

.booknow-modal-title {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 30px;
    line-height: 1.15;
    color: #2f5d22;
}

.booknow-modal-text {
    color: #66705f;
    font-size: 15px;
    line-height: 1.7;
}

.booknow-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding: 13px;
    border: 1px solid rgba(79, 105, 47, 0.14);
    border-radius: 16px;
    background: rgba(244, 247, 236, 0.74);
}

.booknow-filter-field {
    min-width: 0;
}

.booknow-filter-search {
    flex: 1 1 auto;
}

.booknow-filter-category {
    flex: 0 0 36%;
}

.booknow-filter-field label {
    display: block;
    margin: 0 0 6px;
    color: #526537;
    font-size: 12px;
    font-weight: 600;
}

.booknow-filter-input-wrap {
    position: relative;
}

.booknow-filter-input-wrap i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 12px;
    color: #6e8846;
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
}

.booknow-filter-field input,
.booknow-filter-field select {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(67, 92, 39, 0.18);
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: #334226;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
}

.booknow-filter-field input {
    padding: 0 12px 0 35px;
}

.booknow-filter-field select {
    padding: 0 30px 0 12px;
}

.booknow-filter-field input:focus,
.booknow-filter-field select:focus {
    border-color: #6b8843;
    box-shadow: 0 0 0 3px rgba(103, 135, 62, 0.13);
}

.booknow-tour-list {
    padding: 2px;
}

.booknow-tour-card {
    display: flex;
    min-height: 172px;
    overflow: hidden;
    border: 1px solid rgba(73, 101, 40, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(43, 65, 27, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.booknow-tour-card:hover {
    transform: translateY(-3px);
    border-color: rgba(92, 126, 51, 0.44);
    box-shadow: 0 16px 30px rgba(43, 65, 27, 0.15);
}

.booknow-tour-image {
    display: flex;
    flex: 0 0 42%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #dfe7d2;
    color: #526b31;
    font-size: 31px;
}

.booknow-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booknow-tour-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
}

.booknow-tour-category {
    margin-bottom: 6px;
    color: #5c7834;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-transform: uppercase;
}

.booknow-tour-content h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #26371d;
    font-family: 'Kanit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.28;
}

.booknow-tour-price {
    margin-bottom: 13px;
    color: #68705f;
    font-size: 11px;
    line-height: 1.2;
}

.booknow-tour-price span,
.booknow-tour-price strong {
    display: block;
}

.booknow-tour-price strong {
    margin-top: 3px;
    color: #e77d25;
    font-size: 15px;
    font-weight: 700;
}

.booknow-tour-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    background: #556d34;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
}

.booknow-tour-select:hover,
.booknow-tour-select:focus {
    color: #fff;
    background: #385321;
    transform: translateX(2px);
}

.booknow-empty-state {
    padding: 38px 24px;
    border: 1px dashed rgba(75, 104, 40, 0.26);
    border-radius: 16px;
    color: #647158;
    text-align: center;
}

.booknow-empty-state i {
    display: block;
    margin-bottom: 10px;
    color: #688440;
    font-size: 32px;
}

.booknow-empty-state p {
    margin: 0;
    font-size: 15px;
}

.booknow-load-more-wrap {
    margin-top: 20px;
    text-align: center;
}

.booknow-load-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(73, 102, 43, 0.34);
    border-radius: 999px;
    padding: 10px 16px;
    background: #fff;
    color: #4d6930;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.booknow-load-more:hover:not(:disabled),
.booknow-load-more:focus:not(:disabled) {
    background: #536d34;
    color: #fff;
    transform: translateY(-1px);
}

.booknow-load-more:disabled {
    cursor: wait;
    opacity: 0.58;
}

.booknow-results-status {
    margin: 13px 0 0;
    color: #77806b;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .booknow-modal-title {
        font-size: 24px;
    }

    .booknow-modal-text {
        font-size: 14px;
    }

    .booknow-tour-card {
        min-height: 152px;
    }

    .booknow-tour-content {
        padding: 14px;
    }

    .booknow-tour-content h3 {
        font-size: 16px;
    }

    .booknow-filter-bar {
        display: block;
        padding: 12px;
    }

    .booknow-filter-category {
        margin-top: 10px;
    }
}

/* Clearfix */
.clearfix {
    clear: both;
}

.social-logo {
    width: 40px;
    height: auto;
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 99;
}

.social-logo a img {
    transition: all 0.5s;
}

.social-logo a:hover img {
    transform: scale(1.2);
}

/* Img box */
.img-box-1{
	height:380px;
}
.img-box-2{
	height:160px;
}
/**/

/* Nav icon */
.menu-contain {

	font-size: 14px;
	font-family: 'Kanit', sans-serif;
	line-height: 1.4;
}

.menu-containn p {
	font-size: 12px;
	font-family: 'Kanit', sans-serif;
	line-height: 1;
	color: #fff;
}

.menu-contain button {
	font-size: 16px;
	font-family: 'Kanit', sans-serif;
	line-height: 1;
	color: #fff;
	/* width: 250px; */
	/* background-color: #BBCF44;
	height: 50px; */

}

.menu-contain a:hover {
	/* background-color: #28650A; */
	color: #7b9067;
}

/* icon right */
.fab-container {
    font-family: 'Kanit', sans-serif;
    position: fixed;
    right: 15px;
    bottom: 55px;
    z-index: 9999;
}

/* main toggle */
.fab-toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #EAC663;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-toggle i {
    color: #000 !important;
    font-size: 26px;
}

/* items */
.fab-item {
    position: absolute;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #EAC663;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: all .3s ease;
}

.fab-item i {
    color: #000 !important;
    font-size: 24px;
}

/* label */
.fab-label {
    position: absolute;
    right: 72px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: .3s;
}

/* open state */
.fab-container.active .fab-item {
    opacity: 1;
    pointer-events: auto;
}

.fab-container.active .fab-item:nth-child(1) { transform: translateY(-80px); }
.fab-container.active .fab-item:nth-child(2) { transform: translateY(-150px); }
.fab-container.active .fab-item:nth-child(3) { transform: translateY(-220px); }
.fab-container.active .fab-item:nth-child(4) { transform: translateY(-290px); }
.fab-container.active .fab-item:nth-child(5) { transform: translateY(-360px); }
.fab-container.active .fab-item:nth-child(6) { transform: translateY(-430px); }
.fab-container.active .fab-item:nth-child(7) { transform: translateY(-500px); }

.fab-container.active .fab-label {
    opacity: 1;
}

/* hover */
.fab-item:hover {
    transform: scale(1.08) translateY(var(--y));
}

/* Booking */
.booking-shell {
    max-width: 1160px;
}

.booking-card {
    border: 1px solid rgba(66, 101, 39, 0.08);
    border-radius: 28px;
    box-shadow: 0 28px 72px rgba(31, 52, 20, 0.12);
    overflow: hidden;
}

.booking-card__header {
    position: relative;
    overflow: hidden;
    padding: 30px 36px;
    background: linear-gradient(118deg, #2e4b1b 0%, #4e6b2f 56%, #718c48 100%);
    color: #fff;
}

.booking-card__header::after {
    position: absolute;
    top: -82px;
    right: 7%;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    content: "";
}

.booking-card__title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.8rem, 2vw, 2.25rem);
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.tour-contain .booking-card__subtitle {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    color: #fff !important;
    font-size: 0.98rem;
}

.booking-card__body {
    padding: 34px 36px 38px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

.booking-tour-selected {
    display: flex;
    min-height: 152px;
    overflow: hidden;
    border: 1px solid #dce7cf;
    border-radius: 22px;
    background: linear-gradient(104deg, #eff5e7 0%, #f9fbf5 68%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.booking-tour-selected.is-empty {
    border-style: dashed;
    background: #fafbf8;
}

.booking-tour-selected__image {
    flex: 0 0 240px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #dde8cf;
    color: #5a7737;
    font-size: 36px;
}

.booking-tour-selected__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-tour-selected__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 25px 28px;
}

.booking-tour-selected__eyebrow {
    margin-bottom: 5px;
    color: #607a3b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.booking-tour-selected h2 {
    margin: 0;
    color: #2a3c1d;
    font-family: 'Kanit', sans-serif;
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.28;
}

.booking-tour-selected__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.booking-tour-fact {
    display: flex;
    flex-direction: column;
    min-width: 142px;
    padding: 9px 12px;
    border: 1px solid #dbe6d0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .75);
}

.booking-tour-fact span {
    color: #6b7960;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .035em;
    line-height: 1.3;
    text-transform: uppercase;
}

.booking-tour-fact strong {
    display: block;
    margin-top: 3px;
    color: #385224;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.booking-tour-fact--price {
    border-color: #f1d6b6;
    background: #fff6e9;
}

.booking-tour-fact--price strong {
    color: #e37d29;
    font-size: 16px;
    font-weight: 700;
}

.booking-group-limit {
    margin: 2px 0 0;
    color: #61734d;
    font-size: 13px;
    line-height: 1.5;
}

.booking-form-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 10px 0 3px;
    padding: 16px 18px;
    border-left: 4px solid #6a8841;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg, #f0f5e9 0%, rgba(240, 245, 233, 0) 100%);
}

.booking-form-section-heading--compact {
    margin-top: 20px;
}

.booking-form-section-number {
    flex: 0 0 auto;
    color: #809464;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.booking-form-section-heading h2 {
    margin: 0;
    color: #31461f;
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.booking-form-section-heading p {
    margin: 2px 0 0;
    color: #748169;
    font-size: 12px;
    line-height: 1.45;
}

.booking-form {
    margin-left: -12px;
    margin-right: -12px;
    row-gap: 0.1rem;
}

.booking-form > [class*="col-"] {
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 2px;
}

.booking-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.booking-label {
    margin: 0;
    min-height: 28px;
    color: #24331a;
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.booking-required {
    color: #d93025;
}

.booking-input,
.booking-select,
.booking-textarea {
    border: 1px solid #d9dfd0;
    border-radius: 13px;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 1rem;
    color: #24331a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    appearance: none;
}

.booking-textarea {
    min-height: 170px;
    resize: vertical;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    outline: none;
    border-color: #6d8b45;
    box-shadow: 0 0 0 4px rgba(109, 139, 69, 0.12);
}

.booking-input.is-invalid,
.booking-select.is-invalid,
.booking-textarea.is-invalid {
    border-color: #d93025;
    box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.1);
}

.booking-help {
    min-height: 18px;
    color: #d93025;
    font-size: 0.86rem;
    line-height: 1.3;
}

.booking-input[type="date"] {
    position: relative;
}

.flatpickr-input[readonly] {
    background: #fff;
    cursor: pointer;
}

.flatpickr-calendar {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(31, 52, 20, 0.16);
    overflow: hidden;
}

.flatpickr-months {
    background: linear-gradient(135deg, #426527 0%, #6d8b45 100%);
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month,
.flatpickr-weekday {
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-weekdays {
    background: #f3f6ee;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    border-color: #426527;
    background: #426527;
}

.flatpickr-day.today {
    border-color: #ab9550;
    color: #ab9550;
}

.flatpickr-day.today:hover {
    border-color: #ab9550;
    background: rgba(171, 149, 80, 0.12);
    color: #7d6930;
}

.booking-submit {
    border: 0;
    border-radius: 14px;
    min-height: 60px;
    background: linear-gradient(135deg, #e99132 0%, #d97624 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(209, 109, 33, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.booking-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 18px 38px rgba(209, 109, 33, 0.3);
}

.booking-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.booking-program-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(66, 101, 39, 0.08);
    color: #426527;
    font-size: 0.9rem;
    font-weight: 700;
}

.booking-summary-page {
    background: #f3f6ef;
}

.summary-tour-panel {
    height: 100%;
    padding: 22px;
    border: 1px solid #e4ebdc;
    border-radius: 16px;
    background: #fbfcf8;
}

.summary-tour-name {
    margin: -2px 0 14px;
    color: #334724;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #edf4e5;
}

.summary-total span {
    color: #536844;
    font-size: 13px;
    font-weight: 600;
}

.summary-total strong {
    color: #db7626;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.summary-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e6ece0;
}

.summary-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #58723a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.summary-back-link:hover,
.summary-back-link:focus {
    color: #2f5320;
}

.summary-action-form .booking-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 250px;
    padding: 0 22px;
}

/* Booking summary and payment proof */
.booking-step-section {
    background: #eef2ea;
    border-bottom: 1px solid #dce6d3;
    font-family: 'Kanit', sans-serif;
}

.booking-step-shell {
    max-width: 1180px;
}

.booking-step-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 20px 0 18px;
    position: relative;
}

.booking-step-list::before {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    top: 43px;
    height: 2px;
    background: #cfd9c6;
}

.booking-step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: #69745e;
}

.booking-step-marker {
    width: 48px;
    height: 48px;
    border: 2px solid #24431a;
    border-radius: 50%;
    background: #eef2ea;
    color: #1e2d19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 0 6px #eef2ea;
    font-family: 'Kanit', sans-serif;
}

.booking-step-kicker {
    display: block;
    color: inherit;
    font-size: 8px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0;
}

.booking-step-marker strong {
    margin-top: 2px;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.booking-step-label {
    min-height: 22px;
    color: #4e5947;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
}

.swal2-popup,
.swal2-title,
.swal2-html-container,
.swal2-confirm,
.swal2-cancel,
.swal2-deny {
    font-family: 'Kanit', sans-serif !important;
}

.booking-step-item.is-active .booking-step-marker,
.booking-step-item.is-complete .booking-step-marker {
    border-color: #5f8a3f;
    background: #5f8a3f;
    color: #fff;
}

.booking-step-item.is-active .booking-step-label {
    color: #24431a;
    font-weight: 800;
}

.booking-step-item.is-complete .booking-step-label {
    color: #426527;
}

.booking-summary-page,
.payment-proof-page {
    background: #f3f6ef;
}

.booking-summary-shell {
    max-width: 1180px;
}

.payment-proof-shell {
    max-width: 1080px;
}

.summary-panel,
.payment-proof-panel {
    background: #fff;
    border: 1px solid #e3eadb;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(42, 67, 28, 0.08);
    overflow: hidden;
}

.summary-heading,
.payment-proof-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 26px 28px;
    background: linear-gradient(135deg, #355923, #6d8b45);
    color: #fff;
}

.summary-eyebrow,
.payment-proof-eyebrow {
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .82;
}

.summary-title,
.payment-proof-title {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.tour-contain .summary-heading .summary-subtitle {
    margin: 8px 0 0;
    color: #f4d35e !important;
    line-height: 1.6;
}

.tour-contain .payment-proof-heading .payment-proof-subtitle {
    margin: 8px 0 0;
    color: #f4d35e !important;
    line-height: 1.6;
}

.summary-status-pill,
.payment-proof-status {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}

.summary-content,
.payment-proof-content {
    padding: 28px;
}

.summary-section-title,
.payment-card-title {
    margin: 0 0 14px;
    color: #24331a;
    font-size: 18px;
    font-weight: 700;
}

.summary-info-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.summary-info-row,
.payment-info-row {
    display: grid;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid #edf1e8;
}

.summary-info-row {
    grid-template-columns: minmax(130px, 34%) 1fr;
}

.payment-info-row {
    grid-template-columns: minmax(115px, 34%) 1fr;
    gap: 14px;
}

.summary-info-row:last-child,
.payment-info-row:last-child {
    border-bottom: 0;
}

.summary-label,
.payment-label {
    color: #69745e;
    font-weight: 700;
}

.summary-value {
    color: #1e2d19;
    font-weight: 600;
    word-break: break-word;
}

.payment-value {
    color: #1e2d19;
    font-weight: 700;
    word-break: break-word;
}

.summary-side-card,
.payment-card {
    border: 1px solid #e3eadb;
    border-radius: 8px;
    background: #fbfcf8;
}

.summary-side-card {
    padding: 20px;
}

.payment-card {
    height: 100%;
    padding: 22px;
}

.payment-proof-grid {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.summary-total-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid #edf1e8;
    color: #1e2d19;
}

.summary-total-line:last-child {
    border-bottom: 0;
}

.summary-total-guests {
    border-bottom: 0;
}

.summary-grand-total {
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid #d9e4cf;
    color: #426527;
    font-size: 28px;
    font-weight: 800;
    text-align: right;
}

.summary-payment-card {
    margin-top: 18px;
}

.summary-qr-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 230px;
    margin-top: 16px;
    border: 1px dashed #cbd8bd;
    border-radius: 8px;
    background: #fff;
}

.summary-qr-box img {
    max-width: 210px;
    max-height: 210px;
}

.summary-action-form {
    margin-top: 18px;
}

.summary-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    color: #fff !important;
    line-height: 1.2;
    vertical-align: middle;
}

.summary-back-button:hover,
.summary-back-button:focus {
    color: #fff !important;
}

.summary-action-form .booking-submit,
.summary-action-form .btn,
.payment-proof-panel .booking-submit {
    min-height: 52px;
    border-radius: 8px;
    font-weight: 700;
}

.payment-upload-card {
    background: #fff;
}

.payment-upload-note {
    margin: -4px 0 18px;
    color: #69745e;
    line-height: 1.6;
}

.payment-proof-panel .booking-input,
.payment-proof-panel .form-control {
    min-height: 48px;
    border-radius: 8px;
    border-color: #d8e2ce;
}

.payment-proof-panel input[type="file"].form-control {
    padding: 0;
    overflow: hidden;
    line-height: 48px;
}

.payment-proof-panel input[type="file"].form-control::file-selector-button,
.payment-proof-panel input[type="file"].form-control::-webkit-file-upload-button {
    height: 48px;
    margin: 0 14px 0 0;
    padding: 0 16px;
    border: 0;
    border-right: 1px solid #d8e2ce;
    background: #eef4e8;
    color: #24331a;
    font-weight: 700;
}

.payment-file-field {
    margin-bottom: 12px;
}

.payment-submit-wrap {
    margin-top: 10px;
}

.payment-existing-proof {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-radius: 8px;
    font-weight: 700;
}

.payment-total {
    color: #426527;
    font-size: 24px;
    font-weight: 800;
}

.payment-not-found-card {
    background: #fff;
    border-radius: 24px;
}

.payment-not-found-card h2 {
    color: #426527;
    font-weight: 700;
}

.payment-not-found-card .alert {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .booking-step-list {
        grid-template-columns: repeat(3, 110px);
        justify-content: center;
        overflow-x: auto;
        padding: 18px 8px 16px;
        -webkit-overflow-scrolling: touch;
    }

    .booking-step-list::before {
        left: calc(50% - 110px);
        right: auto;
        width: 220px;
        top: 41px;
    }

    .booking-step-marker {
        width: 44px;
        height: 44px;
    }

    .booking-step-marker strong {
        font-size: 20px;
    }

    .booking-step-label {
        font-size: 12px;
    }

    .summary-heading,
    .payment-proof-heading {
        display: block;
        padding: 22px;
    }

    .summary-status-pill,
    .payment-proof-status {
        display: inline-block;
        margin-top: 16px;
    }

    .summary-content,
    .payment-proof-content {
        padding: 20px;
    }

    .summary-info-row,
    .payment-info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 767.98px) {
    .booking-card__header,
    .booking-card__body {
        padding: 22px 18px;
    }

    .booking-form {
        margin-left: -8px;
        margin-right: -8px;
    }

    .booking-form > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 2px;
    }

    .booking-tour-selected {
        min-height: 0;
    }

    .booking-tour-selected__image {
        flex-basis: 118px;
        min-height: 132px;
    }

    .booking-tour-selected__content {
        padding: 16px;
    }

    .booking-tour-selected h2 {
        font-size: 19px;
    }

    .summary-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .summary-action-form,
    .summary-action-form .booking-submit {
        width: 100%;
    }
}

/* ========================================================================
   Home - Contact
   Contact details are managed from Admin > Contact.
   ======================================================================== */
.home-contact-section {
    padding: 0;
    background: #253315;
}

.home-contact-cover {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding: 52px 0 0;
    /* color: #253315; */
    background: #fff url('../images/cover/line-01.jpg') top center / 100% 31px no-repeat;
}

.home-contact-cover::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -48px;
    left: 0;
    height: 48px;
    content: '';
    background: url('../images/cover/line-02.jpg') top center / 100% 48px no-repeat;
    pointer-events: none;
}

.home-contact-cover .container,
.home-contact-body .container {
    max-width: 1360px;
}

.home-contact-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-contact-feature img {
    display: block;
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    object-fit: contain;
}

.home-contact-feature h2 {
    margin: 0;
    color: #67a700;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.18;
    text-transform: uppercase;
}

.home-contact-feature p {
    margin: 5px 0 0;
    color: #3e4637;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.42;
}

.home-contact-quote {
    margin: 0;
    color: #69a900;
    font-family: 'MVBoli', 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: normal;
    line-height: .9;
    text-align: center;
}

.home-contact-body {
    padding: 80px 0 30px;
    background: linear-gradient(
        180deg,
        #5e7434 0,
        #5e7434 48px,
        #65773c 170px,
        #405527 56%,
        #253315 100%
    );
}

.home-contact-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.home-contact-panel {
    min-height: 400px;
    padding: 30px 29px 25px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, rgba(58, 79, 31, .92), rgba(25, 40, 10, .88));
    box-shadow: 0 20px 40px rgba(18, 29, 7, .22);
}

.home-contact-panel > h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(29px, 2.6vw, 40px);
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
}

.home-contact-list {
    display: grid;
}

.home-contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.home-contact-list-item:first-child {
    padding-top: 0;
}

.home-contact-list-item > i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border: 1px solid rgba(220, 241, 166, .45);
    border-radius: 50%;
    color: #dbf2a6;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

.home-contact-list-item > div {
    min-width: 0;
}

.home-contact-list-item strong,
.home-contact-list-item span,
.home-contact-list-item a {
    display: block;
}

.home-contact-list-item strong {
    color: #eff8d7;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-contact-list-item span,
.home-contact-list-item a {
    margin-top: 3px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.home-contact-list-item a:hover,
.home-contact-list-item a:focus {
    color: #c9ee70;
    text-decoration: none;
}

.home-contact-social {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.home-contact-social a,
.home-contact-social > span {
    display: flex;
    min-height: 47px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 1px solid rgba(224, 244, 176, .3);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.1;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.home-contact-social a:hover,
.home-contact-social a:focus {
    color: #fff;
    background: rgba(168, 202, 78, .3);
    text-decoration: none;
    transform: translateY(-2px);
}

.home-contact-social i {
    color: #dff2aa;
    font-size: 16px;
}

.home-contact-social .is-unavailable {
    cursor: default;
    opacity: .48;
}

.home-contact-map {
    display: flex;
    height: 100%;
    min-height: 400px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 28px;
    background: #e8eee0;
    box-shadow: 0 20px 40px rgba(18, 29, 7, .22);
}

.home-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-contact-map.is-empty {
    flex-direction: column;
    gap: 11px;
    color: #5b694d;
}

.home-contact-map.is-empty i {
    font-size: 42px;
}

.home-contact-map.is-empty p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}

@media (min-width: 992px) {
    .home-contact-body .col-lg-4,
    .home-contact-body .col-lg-8 {
        display: flex;
    }

    .home-contact-panel,
    .home-contact-map {
        width: 100%;
    }

    .home-contact-map {
        flex: 1 1 auto;
    }
}

@media (max-width: 991.98px) {
    .home-contact-cover {
        min-height: 0;
        padding: 55px 0 0;
        background-size: auto 31px;
    }

    .home-contact-feature {
        max-width: 290px;
        margin: 0 auto;
    }

    .home-contact-quote {
        margin-top: 11px;
    }

    .home-contact-panel,
    .home-contact-map,
    .home-contact-map iframe {
        min-height: 390px;
        height: 390px;
    }

    .home-contact-panel {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .home-contact-cover {
        padding: 51px 0 0;
    }

    .home-contact-cover .container,
    .home-contact-body .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-contact-feature {
        align-items: flex-start;
        gap: 10px;
    }

    .home-contact-feature img {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .home-contact-feature h2 {
        font-size: 12px;
    }

    .home-contact-feature p {
        font-size: 10px;
    }

    .home-contact-quote {
        font-size: 23px;
    }

    .home-contact-body {
        padding: 78px 0 38px;
    }

    .home-contact-panel {
        min-height: 0;
        padding: 25px 22px;
        border-radius: 22px;
    }

    .home-contact-panel > h2 {
        font-size: 31px;
    }

    .home-contact-map,
    .home-contact-map iframe {
        min-height: 300px;
        height: 300px;
        border-radius: 22px;
    }
}
/* ==================================================
   NAN ADVENTURE TOUR - ABOUT PAGE
================================================== */

.nan-about-page {
    --nan-green: #4b592f;
    --nan-green-dark: #263018;
    --nan-green-soft: #eef1e7;
    --nan-cream: #f7f5ee;
    --nan-text: #252820;
    --nan-text-soft: #697064;
    --nan-border: rgba(75, 89, 47, 0.16);

    width: 100%;
    color: var(--nan-text);
    font-family: 'Kanit', sans-serif;
    overflow: hidden;
}

.nan-about-page *,
.nan-about-page *::before,
.nan-about-page *::after {
    box-sizing: border-box;
}

.nan-about-page img {
    display: block;
    max-width: 100%;
}

.nan-about-page p {
    text-align: left;
}

/* About page slide show
================================================== */

.about-page-hero {
    position: relative;
    min-height: 750px;
    background: #263018;
}

.about-page-carousel,
.about-page-carousel .carousel-inner,
.about-page-carousel .carousel-item,
.about-page-hero-media {
    min-height: 750px;
}

.about-page-hero-media {
    position: relative;
    overflow: hidden;
    background: #263018;
}

.about-page-hero-media picture,
.about-page-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-page-hero-media img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
}

.about-page-hero-media.is-empty {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .7);
    background: linear-gradient(135deg, #52633b, #263018);
    font-size: 64px;
}

.about-page-hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 20, 9, .78) 0%, rgba(11, 20, 9, .5) 40%, rgba(11, 20, 9, .08) 75%, rgba(11, 20, 9, .1) 100%);
}

.about-page-hero-content-wrap {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    max-width: 1360px;
}

.about-page-hero-content {
    color: #fff;
}

.about-page-hero-eyebrow {
    margin: 0 0 11px;
    color: #d3d67c;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.about-page-hero-content h1,
.about-page-hero-content h2 {
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.4vw, 68px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.035em;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .18);
}

.about-page-hero-description {
    max-width: 590px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.about-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.about-page-hero-button,
.about-page-hero-button:hover,
.about-page-hero-button:focus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.about-page-hero-button:hover,
.about-page-hero-button:focus {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, .14);
    transform: translateY(-2px);
}

.about-page-hero-button.is-primary {
    border-color: #8ca243;
    background: #728834;
}

.about-page-hero-button.is-primary:hover,
.about-page-hero-button.is-primary:focus {
    border-color: #9bb24a;
    background: #80993c;
}

.about-page-hero-indicators {
    z-index: 3;
    bottom: 24px;
    margin: 0;
}

.about-page-hero-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border: 0;
    border-radius: 50%;
    background-color: #fff;
}

.about-page-hero-control {
    z-index: 3;
    width: 8%;
    opacity: 1;
}

.about-page-hero-control > span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    color: #fff;
    background: rgba(28, 39, 23, .18);
    font-size: 14px;
}

.about-page-hero-empty {
    display: flex;
    min-height: 750px;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #52633b, #263018);
}

.about-page-hero-empty p {
    margin: 0 0 8px;
    color: #d3d67c;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .13em;
}

.about-page-hero-empty h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    text-transform: uppercase;
}

/* Introduction
================================================== */

.nan-about-intro {
    padding: 100px 28px 85px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(75, 89, 47, 0.09),
            transparent 34%
        ),
        #ffffff;
}

.nan-about-intro-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: end;
    gap: 72px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.nan-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--nan-green);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2.2px;
}

.nan-about-eyebrow::before {
    width: 36px;
    height: 2px;
    content: '';
    background: var(--nan-green);
}

.nan-about-heading h1,
.nan-about-heading h2 {
    max-width: 700px;
    margin: 0;
    color: var(--nan-text);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.nan-about-lead {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--nan-text-soft);
    font-size: 20px;
    line-height: 1.7;
}

.nan-about-description {
    padding-left: 34px;
    border-left: 1px solid var(--nan-border);
}

.nan-about-description p {
    margin: 0 0 22px;
    color: var(--nan-text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.nan-about-description p:last-child {
    margin-bottom: 0;
}

.nan-about-rich-content > :first-child {
    margin-top: 0;
}

.nan-about-rich-content > :last-child {
    margin-bottom: 0;
}

.nan-about-rich-content h2,
.nan-about-rich-content h3,
.nan-about-rich-content h4,
.nan-about-rich-content h5 {
    margin: 0 0 14px;
    color: var(--nan-text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.nan-about-rich-content ul,
.nan-about-rich-content ol {
    margin: 0 0 22px;
    padding-left: 22px;
    color: var(--nan-text-soft);
}

.nan-about-rich-content li {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.75;
}

.nan-about-rich-content blockquote {
    margin: 24px 0;
    padding: 2px 0 2px 20px;
    border-left: 3px solid var(--nan-green);
    color: var(--nan-green);
    font-size: 18px;
    font-style: italic;
    line-height: 1.65;
}

.nan-about-rich-content table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    font-size: 14px;
}

.nan-about-rich-content th,
.nan-about-rich-content td {
    padding: 10px 12px;
    border: 1px solid var(--nan-border);
    text-align: left;
}

.nan-about-rich-content th {
    color: var(--nan-green);
    background: var(--nan-green-soft);
    font-weight: 500;
}

.nan-about-content-image {
    margin: 30px 0 0;
}

.nan-about-content-image img {
    width: 100%;
    border-radius: 10px 40px 10px 10px;
    box-shadow: 0 18px 42px rgba(26, 33, 17, .12);
}

.about-image-zoom-trigger {
    cursor: zoom-in;
    transition: filter .2s ease, transform .2s ease;
}

.about-image-zoom-trigger:hover,
.about-image-zoom-trigger:focus {
    filter: brightness(1.04);
    outline: 0;
    transform: scale(1.01);
}

.about-image-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: rgba(18, 25, 14, .98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.about-image-modal .modal-header {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    padding: 15px;
}

.about-image-modal .btn-close {
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .38);
    opacity: 1;
}

.about-image-modal .modal-body {
    padding: 0;
    text-align: center;
}

.about-image-modal .modal-body img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    margin: 0 auto;
    object-fit: contain;
}

.about-image-modal .modal-body p {
    margin: 0;
    padding: 12px 18px 16px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

/* River Experiences
================================================== */

.nan-river-experiences {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}

.nan-river-card,
.nan-river-card:first-child,
.nan-river-card:last-child {
    position: relative;
    min-width: 0;
    min-height: 570px;
    padding: 74px 56px;
    overflow: hidden;
}

.nan-river-card-dark {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        rgba(22, 29, 13, 0.98),
        rgba(59, 72, 37, 0.95)
    );
}

.nan-river-card-light {
    color: var(--nan-text);
    background: linear-gradient(
        135deg,
        rgba(247, 245, 238, 0.99),
        rgba(232, 236, 221, 0.97)
    );
}

.nan-river-card-number {
    position: absolute;
    top: 18px;
    right: 28px;
    color: rgba(255, 255, 255, 0.07);
    font-size: clamp(110px, 11vw, 170px);
    font-weight: 700;
    line-height: 1;
}

.nan-river-card-light .nan-river-card-number {
    color: rgba(75, 89, 47, 0.08);
}

.nan-river-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.nan-river-label {
    display: block;
    margin-bottom: 22px;
    color: #cbd7ad;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nan-river-card-light .nan-river-label {
    color: var(--nan-green);
}

.nan-river-card h2 {
    max-width: none;
    margin: 0 0 24px;
    color: inherit;
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    text-align: left;
}

.nan-river-level {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.nan-river-card-light .nan-river-level {
    border-color: var(--nan-border);
    color: var(--nan-text-soft);
    background: rgba(255, 255, 255, 0.58);
}

.nan-river-level strong {
    color: #ffffff;
    font-weight: 700;
}

.nan-river-card-light .nan-river-level strong {
    color: var(--nan-green);
}

.nan-river-card p {
    max-width: 500px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.82;
    text-align: left;
}

.nan-river-card-light p {
    color: var(--nan-text-soft);
}

/* Licence and Trust
================================================== */

.nan-about-trust {
    padding: 40px 28px;
    background: var(--nan-green);
}

.nan-about-trust-content {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.nan-about-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 27px;
}

.nan-about-trust .nan-about-eyebrow {
    margin-bottom: 7px;
    color: #dce4c9;
}

.nan-about-trust .nan-about-eyebrow::before {
    background: #dce4c9;
}

.nan-about-trust-text h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.25;
}

.nan-about-trust-text p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
}

.nan-license-box {
    min-width: 240px;
    padding: 20px 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    text-align: center;
}

.nan-license-box span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.nan-license-box strong {
    display: block;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Team and route map
================================================== */

.nan-about-team {
    padding: 100px 28px;
    background: #ffffff;
}

.nan-about-team-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 58px;
    width: min(1280px, 100%);
    margin: 0 auto;
}

.nan-about-team-content {
    min-width: 0;
}

.nan-about-team-content h2 {
    margin: 0 0 28px;
    color: var(--nan-text);
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

.nan-about-team-content > p {
    max-width: 590px;
    margin: 0 0 18px;
    color: var(--nan-text-soft);
    font-size: 16px;
    line-height: 1.82;
    text-align: left;
}

.nan-about-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.nan-about-services > div {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 15px 17px;
    border: 1px solid var(--nan-border);
    border-radius: 12px;
    color: var(--nan-text);
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.nan-about-services i {
    display: inline-flex;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    color: var(--nan-green);
    background: var(--nan-green-soft);
    font-size: 13px;
}

.nan-about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 38px;
}

.nan-about-btn-primary,
.nan-about-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 13px 23px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.nan-about-btn-primary {
    border: 1px solid var(--nan-green);
    color: #ffffff !important;
    background: var(--nan-green);
}

.nan-about-btn-secondary {
    border: 1px solid var(--nan-border);
    color: var(--nan-text) !important;
    background: #ffffff;
}

.nan-about-btn-primary:hover,
.nan-about-btn-secondary:hover {
    transform: translateY(-3px);
}

.nan-about-btn-primary:hover {
    border-color: var(--nan-green-dark);
    background: var(--nan-green-dark);
}

.nan-about-btn-secondary:hover {
    border-color: var(--nan-green);
    color: var(--nan-green) !important;
}

.nan-about-team-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 0 0 46px;
}

.nan-about-team-visual::before {
    position: absolute;
    top: -34px;
    right: -24px;
    width: 220px;
    height: 220px;
    content: '';
    border-radius: 50%;
    background: var(--nan-green-soft);
}

.nan-about-team-image {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px;
    overflow: hidden;
    border-radius: 8px 60px 8px 8px;
    background: #f4f4ef;
    box-shadow: 0 25px 65px rgba(26, 33, 17, 0.13);
}

.nan-about-team-image img {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 400px;
    object-fit: contain;
    object-position: center;
    background: #eeeeea;
}

.nan-about-team-badge {
    position: absolute;
    z-index: 3;
    left: -18px;
    bottom: -35px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    padding: 20px 22px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(26, 33, 17, 0.16);
}

.nan-about-team-badge > i {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--nan-green);
}

.nan-about-team-badge strong,
.nan-about-team-badge span {
    display: block;
}

.nan-about-team-badge strong {
    margin-bottom: 3px;
    color: var(--nan-text);
    font-size: 15px;
}

.nan-about-team-badge span {
    color: var(--nan-text-soft);
    font-size: 12px;
}

/* Responsive
================================================== */

@media (max-width: 1199.98px) {
    .nan-river-card,
    .nan-river-card:first-child,
    .nan-river-card:last-child {
        padding-right: 42px;
        padding-left: 42px;
    }

    .nan-about-team-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 44px;
    }
}

@media (max-width: 1199.98px) {
    .about-page-hero,
    .about-page-carousel,
    .about-page-carousel .carousel-inner,
    .about-page-carousel .carousel-item,
    .about-page-hero-media,
    .about-page-hero-empty {
        min-height: 680px;
    }

    .about-page-hero-content-wrap {
        padding-right: 24px;
        padding-left: 24px;
    }

    .nan-about-intro {
        padding: 78px 24px 68px;
    }

    .nan-about-intro-content,
    .nan-about-team-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nan-about-description {
        padding-left: 0;
        border-left: 0;
    }

    .nan-river-experiences {
        grid-template-columns: 1fr;
    }

    .nan-river-card,
    .nan-river-card:first-child,
    .nan-river-card:last-child {
        min-height: auto;
        padding: 68px 38px;
    }

    .nan-river-card-content {
        max-width: 720px;
    }

    .nan-about-trust-content {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .nan-license-box {
        grid-column: 1 / -1;
        width: 100%;
    }

    .nan-about-team {
        padding: 80px 24px;
    }

    .nan-about-team-content > p {
        max-width: none;
    }

    .nan-about-team-visual {
        width: min(860px, 100%);
        margin: 0 auto;
    }

    .nan-about-team-image img {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .about-page-hero,
    .about-page-carousel,
    .about-page-carousel .carousel-inner,
    .about-page-carousel .carousel-item,
    .about-page-hero-media,
    .about-page-hero-empty {
        min-height: 680px;
    }

    .about-page-hero-content h1,
    .about-page-hero-content h2 {
        font-size: 39px;
    }

    .about-page-hero-description {
        font-size: 14px;
    }

    .about-page-hero-control {
        width: 13%;
    }

    .about-page-hero-control > span {
        width: 37px;
        height: 37px;
    }

    .nan-about-intro,
    .nan-about-team {
        padding: 62px 18px;
    }

    .nan-about-heading h1,
    .nan-about-team-content h2 {
        letter-spacing: -1.2px;
    }

    .nan-about-lead {
        font-size: 17px;
    }

    .nan-river-card,
    .nan-river-card:first-child,
    .nan-river-card:last-child {
        padding: 58px 22px;
    }

    .nan-river-card h2 {
        font-size: 40px;
    }

    .nan-river-card-number {
        top: 15px;
        right: 15px;
        font-size: 105px;
    }

    .nan-about-trust {
        padding: 42px 18px;
    }

    .nan-about-trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nan-about-trust-icon {
        margin: 0 auto;
    }

    .nan-about-trust .nan-about-eyebrow {
        justify-content: center;
    }

    .nan-about-trust-text p {
        text-align: center;
    }

    .nan-about-services {
        grid-template-columns: 1fr;
    }

    .nan-about-buttons {
        flex-direction: column;
    }

    .nan-about-btn-primary,
    .nan-about-btn-secondary {
        width: 100%;
    }

    .nan-about-team-visual {
        padding-bottom: 0;
    }

    .nan-about-team-visual::before {
        right: -50px;
        width: 180px;
        height: 180px;
    }

    .nan-about-team-image {
        padding: 10px;
        border-radius: 6px 36px 6px 6px;
    }

    .nan-about-team-badge {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: 30px;
        width: calc(100% - 24px);
        min-width: 0;
        margin: -24px auto 0;
    }
}
