:root {
    --gold: #b9903a;
    --gold-dark: #97742a;
    --gold-light: #e9d9b4;
    --dark: #14251e;
    --ink: #2b2b2b;
    --muted: #6f6f6f;
    --cream: #faf6f1;
}

* {
    font-family: 'Prompt',sans-serif;
}

body {
    color: var(--ink);
    background: #fff;
}

a {
    text-decoration: none;
}

/* ---------- Navbar ---------- */
.navbar {
    padding: .6rem 0;
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink) !important;
    padding: .4rem .7rem !important;
    position: relative;
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

    .nav-link.active {
        color: var(--gold) !important;
    }

    .nav-link.disabled {
        color: #adb5bd !important;
        opacity: .7;
    }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -2px;
            width: 70%;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

.btn-dark-pill {
    background: var(--dark);
    color: #fff;
    border-radius: 50px;
    font-size: .85rem;
    padding: .5rem 1.2rem;
    border: none;
    font-weight: 500;
}

    .btn-dark-pill:hover {
        background: #243b31;
        color: #fff;
    }

.btn-outline-pill {
    border: 1.5px solid #cfcfcf;
    color: var(--ink);
    border-radius: 50px;
    font-size: .85rem;
    padding: .5rem 1.4rem;
    background: #fff;
    font-weight: 500;
}

    .btn-outline-pill:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: #fff;
    }

.btn-gold-pill {
    background: linear-gradient(90deg,#c9a24a,#b3842e);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .65rem 2.2rem;
    font-weight: 500;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(179,132,46,.35);
}

    .btn-gold-pill:hover {
        background: linear-gradient(90deg,#d4af58,#c08f35);
        color: #fff;
    }

/* ---------- Hero ---------- */
.hero {
    padding: 3.5rem 0 2.5rem;
    overflow: hidden;
}

    .hero h1 {
        font-weight: 600;
        font-size: 2rem;
        line-height: 1.5;
    }

        .hero h1 .text-gold {
            color: var(--gold);
        }

    .hero .lead-sub {
        color: var(--muted);
        font-size: 1rem;
        font-weight: 300;
        margin-top: 1rem;
    }

.hero-img-wrap {
    position: relative;
}

    .hero-img-wrap::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(201,162,74,.25), transparent 70%);
        z-index: 0;
    }

    .hero-img-wrap img {
        width: 100%;
        border-radius: 24px 120px 24px 24px;
        position: relative;
        z-index: 1;
        box-shadow: 0 20px 45px rgba(20,37,30,.18);
    }

.feature-item {
    text-align: center;
    padding: 0 .4rem;
}

    .feature-item i {
        font-size: 1.9rem;
        color: var(--gold);
    }

    .feature-item p {
        font-size: .75rem;
        color: var(--muted);
        margin: .5rem 0 0;
        line-height: 1.5;
    }

/* ---------- Section headings ---------- */
.section-title {
    padding-top: 1.5rem;
    font-weight: 600;
    font-size: 1.45rem;
    text-align: center;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: .6rem 0 2rem;
}

    .section-divider::before, .section-divider::after {
        content: "";
        width: 60px;
        height: 1px;
        background: var(--gold-light);
    }

    .section-divider span {
        width: 10px;
        height: 10px;
        border: 2px solid var(--gold);
        transform: rotate(45deg);
        display: block;
    }

/* ---------- Clients ---------- */
.clients-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
    padding: 1.5rem;
    border: 1px solid #f1ece4;
}

.client-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: .6rem;
    min-height: 92px;
    gap: .4rem;
}

    .client-cell img {
        flex: 1;
        max-height: 60px;
        max-width: 100%;
        object-fit: contain;
        align-self: center;
    }

    .client-label {
        font-size: .68rem;
        color: var(--muted);
        text-align: center;
        line-height: 1.3;
        margin-top: auto;
    }

.client-more {
    background: var(--cream);
    border-radius: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.4rem;
}

    .client-more p {
        margin: 0;
        font-size: .85rem;
        color: var(--ink);
        font-weight: 500;
    }

/* ---------- Services ---------- */
.service-card {
    border: 1px solid #eee6d8;
    border-radius: 16px;
    padding: 1.8rem 1rem;
    text-align: center;
    height: 100%;
    background: #fff;
    transition: .25s;
}

    .service-card:hover {
        box-shadow: 0 12px 30px rgba(185,144,58,.15);
        transform: translateY(-4px);
    }

    .service-card i {
        font-size: 2.2rem;
        color: var(--gold);
    }

    .service-card h5 {
        font-size: .95rem;
        font-weight: 600;
        margin: .9rem 0 .4rem;
    }

    .service-card p {
        font-size: .75rem;
        color: var(--muted);
        margin: 0;
        line-height: 1.6;
    }

    .service-card .service-cover-wrap {
        position: relative;
        display: block;
        width: calc(100% + 2rem);
        height: 140px;
        margin: -1.8rem -1rem 1rem;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }

    .service-card .service-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ---------- Org types ---------- */
.org-col {
    background: #fff;
    border: 1px solid #f0ebe1;
    border-radius: 16px;
    padding: 1.6rem 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.org-head {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: 1rem;
}

    .org-head i {
        font-size: 1.7rem;
        color: var(--gold);
    }

    .org-head h6 {
        font-size: .85rem;
        font-weight: 600;
        margin: 0;
        line-height: 1.45;
    }

.org-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    font-size: .72rem;
    color: var(--muted);
    flex: 1;
}

    .org-list li {
        padding: .28rem 0 .28rem 1rem;
        position: relative;
    }

        .org-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .75rem;
            width: 5px;
            height: 5px;
            background: var(--gold);
            transform: rotate(45deg);
        }

.org-col .btn {
    align-self: center;
}

/* ---------- CTA ---------- */
.cta {
    background: url('assets/cta-bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 5rem 0;
}

    .cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10,20,16,.55), rgba(10,20,16,.35));
    }

    .cta .inner {
        position: relative;
        z-index: 1;
        text-align: center;
        color: #fff;
    }

    .cta h2 {
        font-weight: 600;
        font-size: 1.8rem;
    }

        .cta h2 .text-gold {
            color: #e6c877;
        }

    .cta p {
        font-weight: 300;
        font-size: .95rem;
        margin: .6rem 0 1.6rem;
    }

/* ---------- Footer ---------- */
footer {
    background: var(--cream);
    padding: 3rem 0 0;
}

.footer-logo {
    height: 80px;
    mix-blend-mode: multiply;
}

.footer-desc {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-title {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: .55rem;
    }

    .footer-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: .78rem;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.footer-contact li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    margin-bottom: .7rem;
    font-size: .78rem;
    color: var(--muted);
}

.footer-contact i {
    color: var(--dark);
    font-size: .95rem;
}

.footer-contact a {
    color: var(--muted);
    text-decoration: none;
    font-size: .7rem !important;
}

    .footer-contact a:hover {
        color: var(--gold);
    }

.qr-box {
    background: #fff;
    border: 1px solid #ece5da;
    border-radius: 12px;
    padding: .7rem;
    text-align: center;
}

    .qr-box img {
        width: 100%;
        max-width: 110px;
    }

    .qr-box small {
        display: block;
        font-size: .65rem;
        color: var(--muted);
        margin-top: .3rem;
    }

.footer-bottom {
    border-top: 1px solid #ece5da;
    margin-top: 2.2rem;
    padding: 1.1rem 0;
    text-align: center;
    font-size: .72rem;
    color: var(--muted);
}

@media (max-width:991px) {
    .hero {
        padding-top: 2rem;
    }

        .hero h1 {
            font-size: 1.6rem;
        }
}

/* ---------- Hotel listing page ---------- */
.breadcrumb-bar {
    background: var(--cream);
    padding: .6rem 0;
    border-bottom: 1px solid #f1ece4;
}

    .breadcrumb-bar .breadcrumb {
        font-size: .78rem;
        color: var(--muted);
    }

    .breadcrumb-bar .breadcrumb-item a {
        color: var(--muted);
    }

        .breadcrumb-bar .breadcrumb-item a:hover {
            color: var(--gold);
        }

    .breadcrumb-bar .breadcrumb-item.active {
        color: var(--gold);
    }

    .breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
        color: #cfc7ba;
    }

.hotel-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: url('assets/hero.jpg') center/cover no-repeat;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,20,16,.72) 0%, rgba(10,20,16,.35) 55%, rgba(10,20,16,.15) 100%);
}

.hotel-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 3rem 0 4.5rem;
}

    .hotel-hero-eyebrow {
        font-size: .85rem;
        letter-spacing: .5px;
        margin-bottom: .3rem;
        color: var(--gold-light);
    }

    .hotel-hero-content h1,
    .hotel-hero-content h2 {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: .8rem;
    }

    .hotel-hero-desc {
        font-size: .95rem;
        font-weight: 300;
        max-width: 520px;
        line-height: 1.7;
        margin: 0;
        color: rgba(255,255,255,.9);
    }

.hotel-info-strip {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-top: -2.6rem;
    position: relative;
    z-index: 2;
    padding: 1.1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .8rem 1.5rem;
}

    .hotel-info-strip .info-item {
        font-size: .8rem;
        font-weight: 500;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .hotel-info-strip .info-item i {
            color: var(--gold);
            font-size: 1rem;
        }

.search-box {
    background: #fff;
    border: 1px solid #f1ece4;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    padding: 1.5rem;
}

.search-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.search-label {
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: .3rem;
    display: block;
}

.search-box .form-select {
    font-size: .82rem;
    border-color: #dcd5c9;
    padding: .5rem .8rem;
}

    .search-box .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 .2rem rgba(185,144,58,.15);
    }

.clear-filter {
    font-size: .78rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
}

    .clear-filter:hover {
        color: var(--gold);
    }

.results-count {
    font-size: .85rem;
    color: var(--ink);
}

    .results-count strong {
        color: var(--gold-dark);
    }

.sort-select {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    color: var(--muted);
}

    .sort-select .form-select {
        width: auto;
        font-size: .8rem;
        border-color: #dcd5c9;
    }

.hotel-card {
    background: #fff;
    border: 1px solid #f1ece4;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .25s;
}

    .hotel-card:hover {
        box-shadow: 0 14px 32px rgba(20,37,30,.12);
        transform: translateY(-4px);
    }

.hotel-card-img {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    margin: .9rem .9rem 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-hint {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: rgba(20,37,30,.55);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity .2s ease;
}

    .hotel-card-img:hover .gallery-hint,
    .hotel-card-img:focus-visible .gallery-hint,
    .service-cover-wrap:hover .gallery-hint,
    .service-cover-wrap:focus-visible .gallery-hint {
        opacity: 1;
    }

/* ===== Hotel gallery modal ===== */
.gallery-modal-content {
    border-radius: 16px;
    border: none;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}

.gallery-thumb {
    position: relative;
    width: 180px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    border: 1px solid #f1ece4;
}

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

    .gallery-thumb:hover img {
        transform: scale(1.06);
    }

.gallery-viewer-back {
    background: none;
    border: none;
    color: var(--gold-dark);
    font-weight: 500;
    padding: 0 0 .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.gallery-viewer-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
}

    .gallery-viewer-stage img {
        max-width: 100%;
        max-height: 70vh;
        display: block;
    }

.gallery-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ink);
}

.gallery-viewer-prev { left: .75rem; }
.gallery-viewer-next { right: .75rem; }

.gallery-viewer-count {
    text-align: center;
    margin-top: .6rem;
    font-size: .85rem;
    color: #7a7367;
}

.badge-tag {
    position: absolute;
    top: .7rem;
    left: .7rem;
    z-index: 1;
    background: rgba(20,37,30,.85);
    color: #fff;
    font-size: .68rem;
    font-weight: 500;
    padding: .3rem .7rem;
    border-radius: 50px;
}

.hotel-card-body {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .hotel-card-body h3 {
        font-size: .95rem;
        font-weight: 600;
        margin: 0 0 .3rem;
    }

.hotel-location {
    font-size: .72rem;
    color: var(--muted);
    margin: 0 0 .6rem;
}

    .hotel-location i {
        color: var(--gold);
        margin-right: .2rem;
    }

.hotel-meta {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    font-size: .72rem;
    color: var(--ink);
    margin-bottom: .6rem;
}

    .hotel-meta i {
        color: var(--gold-dark);
        margin-right: .35rem;
        width: 14px;
        display: inline-block;
        text-align: center;
    }

.hotel-desc {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}

.hotel-card-actions {
    display: flex;
    gap: .5rem;
}

    .hotel-card-actions .btn {
        flex: 1;
        font-size: .72rem;
        padding: .45rem .6rem;
        white-space: nowrap;
    }

.activity-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: .2rem 0 .6rem;
}

.activity-icon-cover {
    aspect-ratio: 1 / 1;
    margin: .9rem .9rem 0;
    border-radius: 14px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .activity-icon-cover i {
        font-size: 2.6rem;
        color: var(--gold);
    }

/* ===== Region picker cards ===== */
.region-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #f1ece4;
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    height: 100%;
    transition: .25s;
}

    .region-card:hover {
        box-shadow: 0 14px 32px rgba(20,37,30,.12);
        transform: translateY(-4px);
    }

.region-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-dark);
}

.region-card-body h3 {
    font-size: .95rem;
    font-weight: 600;
    margin: 0 0 .3rem;
    color: var(--ink);
}

.region-card-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 500;
    padding: .2rem .6rem;
    border-radius: 50px;
    background: var(--cream);
    color: var(--gold-dark);
}

/* ===== Province panel (hotel-all.html) ===== */
.province-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.province-panel {
    background: #fff;
    border: 1px solid #f1ece4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20,37,30,.08);
}

    .province-panel .hotel-hero {
        min-height: 220px;
    }

.help-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.help-icon {
    font-size: 6.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

.help-content {
    flex: 1;
    min-width: 0;
}

.help-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.help-sub {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}

    .help-list li {
        font-size: .8rem;
        color: var(--ink);
        margin-bottom: .5rem;
        display: flex;
        align-items: flex-start;
        gap: .5rem;
    }

    .help-list i {
        color: var(--gold-dark);
        margin-top: .15rem;
    }

.trust-bar {
    background: var(--dark);
    color: #fff;
    padding: 1.6rem 0;
}

.trust-bar-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    font-weight: 500;
}

    .trust-item i {
        color: var(--gold);
        font-size: 1.2rem;
    }

@media (max-width:991px) {
    .hotel-hero-content h1,
    .hotel-hero-content h2 {
        font-size: 2rem;
    }

    .hotel-info-strip {
        margin-top: 1rem;
        justify-content: flex-start;
    }
}

.cover-image {
	width: 100%;
}

.text-gold {
	color: #b9903a !important;
}

.text-padding-left-10 {
	padding-left: 10px;
}