/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #fff;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Hero ── */
.pg-hero {
    position: relative;
    height: 480px;
    background: center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.pg-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 0 16px;
}

.pg-hero h1 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 auto;
    max-width: 800px;
}

/* ── Sticky tabs ── */
.pg-tabs-wrap {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    border-bottom: 2px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.pg-tabs {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}

.pg-tabs::-webkit-scrollbar {
    display: none;
}

.pg-tab {
    flex-shrink: 0;
    padding: 14px 22px;
    font-size: .85rem;
    font-weight: 600;
    color: #666;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.pg-tab:hover {
    color: #333;
}

.pg-tab.active {
    color: #f7941d;
    border-bottom-color: #f7941d;
}

.pg-tab-booknow {
    margin-left: auto;
    flex-shrink: 0;
    background: #f7941d;
    color: #fff;
    border: none;
    font-size: .84rem;
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    margin-right: 0;
}

.pg-tab-booknow:hover {
    background: #df840f;
}

@media(max-width:575px) {
    .pg-tab-booknow {
        padding: 8px 16px;
        font-size: .74rem;
        border-radius: 999px;
        margin-left: 8px;
        margin-right: 6px;
    }
}

/* ── Layout ── */
.pg-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    max-width: 1160px;
    margin: 0 auto;
    padding: 44px 16px 80px;
}

.pg-content {
    flex: 1;
    min-width: 0;
}

.pg-sidebar {
    width: 288px;
    flex-shrink: 0;
    position: sticky;
    top: 58px;
}

@media(max-width:991px) {
    .pg-layout {
        flex-direction: column;
        padding: 28px 16px 60px;
    }

    .pg-sidebar {
        width: 100%;
        position: static;
    }

    .pg-tab {
        padding: 12px 16px;
        font-size: .8rem;
    }
}

/* ── Section common ── */
.pg-sec {
    margin-bottom: 56px;
    scroll-margin-top: 58px;
}

.pg-sec-lbl {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #f7941d;
    display: block;
    margin-bottom: 3px;
}

.pg-sec h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
}

.pg-rule {
    width: 36px;
    height: 2px;
    background: #f7941d;
    border: none;
    margin: 8px 0 22px;
}

.pg-sec p {
    font-size: .93rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 12px;
}

.pg-sec p:last-child {
    margin-bottom: 0;
}

/* ── Glance cards ── */
.glance-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 0;
}

.glance-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    background: #fafafa;
}

.glance-card i {
    font-size: 1.2rem;
    color: #f7941d;
    margin-bottom: 7px;
    display: block;
}

.glance-card strong {
    display: block;
    font-size: .8rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 1px;
}

.glance-card span {
    font-size: .73rem;
    color: #888;
}

/* ── Highlights list ── */
.hl-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hl-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .9rem;
    color: #444;
}

.hl-list li:last-child {
    border-bottom: none;
}

.hl-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #f7941d;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Itinerary days (full-width stacked) ── */
.itn-day {
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid #efefef;
}

.itn-day:last-child {
    border-bottom: none;
}

.itn-day__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.itn-day__tag {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 18px 6px 16px;
    flex-shrink: 0;
    clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%, 8% 50%);
}

.itn-day__park {
    font-size: .78rem;
    font-weight: 600;
    color: #888;
    letter-spacing: .04em;
}

.itn-day__attraction {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 0 0 16px;
}

.itn-day__cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 20px;
    display: block;
}

@media(max-width:700px) {
    .itn-day__cover {
        height: 220px;
    }
}

.itn-day__desc {
    font-size: .92rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}

.itn-overnight {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 600;
    color: #444;
    background: #fdf9f3;
    border: 1px solid #eadfce;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 28px;
}

.itn-overnight i {
    color: #f7941d;
}

/* ── Day body indent ── */
.itn-day__body {
    padding-left: 24px;
    border-left: 3px solid rgba(0, 0, 0, .24);
    margin-left: 6px;
    margin-top: 4px;
}

/* ── Accommodation gallery (thumb + main viewer) ── */
.accom-block {
    background: #fdf9f3;
    border: 1px solid #eadfce;
    border-radius: 8px;
    padding: 18px 20px;
}

.accom-block__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #f7941d;
    margin-bottom: 4px;
    display: block;
}

.accom-block__name {
    font-size: .96rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}

.accom-viewer {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.accom-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 110px;
}

.accom-thumb {
    width: 110px;
    height: 72px;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
}

.accom-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accom-thumb.active,
.accom-thumb:hover {
    border-color: #f7941d;
}

.accom-main {
    flex: 1;
    border-radius: 3px;
    overflow: hidden;
    min-height: 236px;
    background: #eee;
}

.accom-main__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media(max-width:600px) {
    .accom-viewer {
        flex-direction: column;
    }

    .accom-thumbs {
        flex-direction: row;
        width: 100%;
    }

    .accom-thumb {
        width: 80px;
        height: 60px;
        flex-shrink: 0;
    }

    .accom-main {
        min-height: 200px;
    }
}

/* ── Full-width sections (related, faq) ── */
.pg-fullsec {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 16px 72px;
    scroll-margin-top: 58px;
}

/* ── Activities cards ── */
.act-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 14px;
}

.act-card {
    position: relative;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    background: #111;
    height: 170px;
    display: flex;
    align-items: flex-end;
    transition: none;
}

.act-card__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.act-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .08) 55%, rgba(0, 0, 0, 0) 100%);
}

.act-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.act-card__body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, .45);
}

.act-card__title {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.act-card__price {
    font-size: .78rem;
    color: rgba(255, 255, 255, .86);
}

/* ── Related packages ── */
.rel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}

@media(max-width:991px) {
    .rel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:575px) {
    .rel-grid {
        grid-template-columns: 1fr;
    }
}

.rel-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    min-height: 250px;
    display: block;
    background: #111;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: inherit;
}

.rel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    color: #ffffff;
}

.rel-card__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.rel-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .26) 48%, rgba(0, 0, 0, .08) 100%);
}

.rel-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.rel-card:hover .rel-card__img img {
    transform: scale(1.06);
}

.rel-card__body {
    position: relative;
    z-index: 2;
    min-height: 250px;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.rel-card__info {
    flex: 1;
}

.rel-card__days {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: .95;
}

.rel-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.rel-card__title::before {
    content: '';
    display: block;
    width: calc(100% - 8px);
    height: 2px;
    background: #fff;
    margin-left: 4px;
    margin-bottom: 10px;
}

.rel-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
    transition: all .2s;
}

.rel-card:hover .rel-card__arrow {
    background: #f7941d;
    color: #fff;
    border-color: #f7941d;
}

/* ── FAQ ── */
.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:first-child {
    border-top: 1px solid #e8e8e8;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 4px;
    font-size: .92rem;
    font-weight: 600;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq-btn:hover {
    color: #f7941d;
}

.faq-icon {
    color: #bbb;
    font-size: .78rem;
    transition: transform .25s, color .2s;
    flex-shrink: 0;
}

.faq-btn.open .faq-icon {
    transform: rotate(180deg);
    color: #f7941d;
}

.faq-body {
    font-size: .88rem;
    color: #555;
    line-height: 1.8;
    padding: 0 4px 18px;
    display: none;
}

.faq-body.show {
    display: block;
}

/* ── SIDEBAR ── */
.sdb {
    background: #fdf9f3;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: background-color .2s ease;
}

.sdb:hover {
    background: #fbe8d1;
}

.sdb-head {
    background: #fbe8d1;
    padding: 22px 22px 18px;
    border-bottom: 3px solid #f7941d;
}

.sdb-from {
    font-size: .68rem;
    color: #111;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.sdb-price {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.sdb-pp {
    font-size: .75rem;
    color: #111;
    margin-top: 3px;
}

.sdb-body {
    padding: 18px 20px;
}

.sdb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .84rem;
}

.sdb-row:last-of-type {
    border-bottom: none;
}

.sdb-row__label {
    color: #5f5f5f;
    font-weight: 600;
}

.sdb-row__val {
    font-weight: 700;
    color: #161616;
}

.btn-request {
    display: block;
    width: 100%;
    margin-top: 18px;
    background: #f7941d;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px;
    font-size: .92rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    letter-spacing: .02em;
}

.btn-request:hover {
    background: #df840f;
    color: #fff;
}

.sdb-sep {
    border: 0;
    border-top: 1px solid #e7e7e7;
    margin: 14px 0;
}

.sdb-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #7f7f7f;
    font-size: .82rem;
}

.sdb-dots {
    display: inline-flex;
    gap: 5px;
}

.sdb-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b88a2a;
    display: inline-block;
}

.sdb-karibu {
    color: #777;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.sdb-hakuna {
    display: block;
    background: #1f1f1f;
    color: #fff;
    padding: 4px 10px;
    border-radius: 0;
    font-style: italic;
    text-transform: none;
    letter-spacing: .02em;
    width: 100%;
    text-align: center;
}

/* ── Inc/Exc ── */
.ie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media(max-width:575px) {
    .ie-grid {
        grid-template-columns: 1fr;
    }
}

.ie-box h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.inc-box h4 {
    color: #2ecc71;
}

.exc-box h4 {
    color: #e74c3c;
}

.ie-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ie-list li {
    font-size: .86rem;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.ie-list li:last-child {
    border-bottom: none;
}

.inc-box .ie-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #2ecc71;
    flex-shrink: 0;
    margin-top: 2px;
}

.exc-box .ie-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Modal ── */
.modal-content {
    border: none;
    border-radius: 10px;
}

.modal-header {
    background: #111;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 18px 24px;
    border-bottom: 3px solid #f7941d;
}

.modal-title {
    font-size: .95rem;
    font-weight: 700;
}

.modal-header .close {
    color: rgba(255, 255, 255, .6);
    font-size: 1.4rem;
}

.mf-label {
    display: block;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #333;
    margin-bottom: 5px;
}

.mf-ctrl {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 13px;
    font-size: .9rem;
    color: #111;
    margin-bottom: 13px;
}

.mf-ctrl:focus {
    border-color: #f7941d;
    outline: none;
}

.btn-mf {
    width: 100%;
    padding: 13px;
    background: #f7941d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s;
}

.btn-mf:hover {
    background: #df840f;
}

/* ── Breadcrumb ── */
.pg-bc {
    background: #111;
    padding: 10px 0;
}

.pg-bc ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pg-bc li {
    font-size: .76rem;
    color: rgba(255, 255, 255, .45);
}

.pg-bc li a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

.pg-bc li a:hover {
    color: #f7941d;
}

.pg-bc li+li::before {
    content: '/';
    margin-right: 4px;
    color: rgba(255, 255, 255, .2);
}

.pg-bc li:last-child {
    color: rgba(255, 255, 255, .75);
}

.btn-whatsapp-booking {
    display: block;
    width: 100%;
    margin-top: 12px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px;
    font-size: .92rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    letter-spacing: .02em;
    text-decoration: none;
}

.btn-whatsapp-booking:hover {
    background: #128c7e;
    color: #fff;
    text-decoration: none;
}