/* ================================================================
   LEHERIYA DESERT CAMP — Sam Sand Dunes, Jaisalmer
   Royal Thar Luxury Theme — css/style.css
   Colors: Desert Gold #D99A19 | Sunset Orange #F59A23
           Deep Brown #4A1708 | Warm Cream #FFF8EA
           Sand Gold #E8C271 | Teal #008C8C | Rajasthani Red #D51E2A
   ================================================================ */

:root {
    --gold: #d99a19;
    --orange: #f59a23;
    --brown: #4a1708;
    --brown-deep: #331005;
    --cream: #fff8ea;
    --cream-soft: #fdf3dc;
    --sand: #e8c271;
    --teal: #008c8c;
    --red: #d51e2a;
    --ink: #3d2113;
    --muted: #8a6f52;
    --white: #ffffff;
    --serif: "Marcellus", "Georgia", serif;
    --sans: "Jost", "Segoe UI", sans-serif;
    --shadow-soft: 0 18px 45px rgba(74, 23, 8, 0.12);
    --shadow-card: 0 10px 30px rgba(74, 23, 8, 0.1);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    font-size: 1.02rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
.ff-serif {
    font-family: var(--serif);
    color: var(--brown);
    font-weight: 400;
}
h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 1.22;
}
h3 {
    font-size: 1.35rem;
}
p {
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
}
::selection {
    background: var(--gold);
    color: var(--brown);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 11px;
}
::-webkit-scrollbar-track {
    background: var(--cream-soft);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--orange));
    border-radius: 10px;
    border: 2px solid var(--cream-soft);
}

/* Utility colors */
.text-gold {
    color: var(--gold) !important;
}
.text-brown {
    color: var(--brown) !important;
}
.text-cream {
    color: var(--cream) !important;
}
.text-teal {
    color: var(--teal) !important;
}
.bg-cream {
    background: var(--cream) !important;
}
.bg-sand-soft {
    background: linear-gradient(180deg, var(--cream) 0%, #faeed0 100%) !important;
}
.section-pad {
    padding: 96px 0;
}
.section-pad-sm {
    padding: 70px 0;
}
.lead-text {
    font-size: 1.13rem;
    color: #6b5236;
}

/* Dark patterned section (deep brown + subtle diamond lattice) */
.bg-desert-night {
    background-color: var(--brown-deep);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cpath d='M65 16 L114 65 L65 114 L16 65 Z' fill='none' stroke='%23D99A19' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Cpath d='M65 40 L90 65 L65 90 L40 65 Z' fill='none' stroke='%23F59A23' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
    color: #f3e2c3;
}
.bg-desert-night h2,
.bg-desert-night h3,
.bg-desert-night h4 {
    color: var(--cream);
}

/* ---------- Ornaments (Leheriya inspired) ---------- */
.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.sec-kicker::before,
.sec-kicker::after {
    content: "";
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.sec-kicker::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 0;
}
.ornament .o-line {
    width: 74px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament .o-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament .o-gem {
    width: 9px;
    height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
    position: relative;
    flex: 0 0 auto;
}
.ornament .o-gem::before,
.ornament .o-gem::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--orange);
    transform: rotate(0deg);
}
.ornament .o-gem::before {
    left: -13px;
    top: 2px;
}
.ornament .o-gem::after {
    right: -13px;
    top: 2px;
}
.ornament.on-dark .o-gem {
    background: var(--orange);
}

/* Leheriya tri-wave ribbon */
.leheriya-ribbon {
    height: 7px;
    border: 0;
    background: repeating-linear-gradient(
        -55deg,
        var(--gold) 0 26px,
        var(--orange) 26px 52px,
        var(--red) 52px 78px,
        var(--teal) 78px 104px
    );
    opacity: 0.9;
}

/* Dune / wave divider */
.dune-divider {
    display: block;
    width: 100%;
    height: 90px;
    margin-bottom: -1px;
}

/* ---------- Buttons ---------- */
.btn-royal {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    background: linear-gradient(120deg, var(--sand) 0%, var(--gold) 55%, var(--orange) 115%);
    border: 1px solid rgba(74, 23, 8, 0.15);
    border-radius: 50rem;
    padding: 0.95rem 2.3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.3s;
}
.btn-royal::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, var(--brown) 0%, var(--brown-deep) 100%);
    transform: translateY(101%);
    transition: transform 0.45s var(--ease);
}
.btn-royal:hover {
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(217, 154, 25, 0.35);
}
.btn-royal:hover::after {
    transform: translateY(0);
}

.btn-outline-cream {
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1.5px solid rgba(255, 248, 234, 0.7);
    border-radius: 50rem;
    padding: 0.95rem 2.3rem;
    background: transparent;
    transition: all 0.35s var(--ease);
}
.btn-outline-cream:hover {
    background: var(--cream);
    color: var(--brown);
    border-color: var(--cream);
    transform: translateY(-3px);
}

.btn-outline-brown {
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    border: 1.5px solid var(--brown);
    border-radius: 50rem;
    padding: 0.95rem 2.3rem;
    background: transparent;
    transition: all 0.35s var(--ease);
}
.btn-outline-brown:hover {
    background: var(--brown);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(74, 23, 8, 0.25);
}

.btn-whatsapp {
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: #1faa53;
    border-radius: 50rem;
    padding: 0.95rem 2.1rem;
    transition: all 0.35s var(--ease);
    border: 1.5px solid #1faa53;
}
.btn-whatsapp:hover {
    color: #1faa53;
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(31, 170, 83, 0.3);
}

/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1045;
    padding: 16px 0;
    transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
}
.site-header.transparent-header {
    background: transparent;
}
.site-header.header-solid {
    background: rgba(255, 248, 234, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 26px rgba(74, 23, 8, 0.12);
    padding: 8px 0;
}
.site-header.header-solid::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        -55deg,
        var(--gold) 0 22px,
        var(--orange) 22px 44px,
        var(--red) 44px 66px,
        var(--teal) 66px 88px
    );
    opacity: 0.85;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand-text strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.32rem;
    letter-spacing: 0.14em;
    color: var(--cream);
}
.brand-text small {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 3px;
}
.header-solid .brand-text strong {
    color: var(--brown);
}
.header-solid .brand-text small {
    color: var(--orange);
}

/* Links */
.site-header .navbar-nav {
    gap: 6px;
}
.site-header .nav-link {
    position: relative;
    color: rgba(255, 248, 234, 0.92);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem !important;
}
.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.35s var(--ease);
    transform: translateX(-50%);
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    width: 55%;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--gold);
}
.header-solid .nav-link {
    color: var(--brown);
}
.header-solid .nav-link:hover,
.header-solid .nav-link.active {
    color: var(--orange);
}

.btn-book-header {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    padding: 0.68rem 1.7rem;
    box-shadow: 0 6px 18px rgba(217, 154, 25, 0.35);
}

/* Toggler */
.navbar-toggler.custom-toggler {
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: none !important;
}
.navbar-toggler.custom-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--gold);
    transition: all 0.35s var(--ease);
}
.navbar-toggler.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggler.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 10px 0;
    }
    .site-header .navbar-collapse {
        background: var(--cream);
        border-radius: 14px;
        margin-top: 12px;
        padding: 18px 20px 24px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(217, 154, 25, 0.3);
        max-height: 74vh;
        overflow-y: auto;
    }
    .site-header .nav-link {
        color: var(--brown);
        padding: 0.7rem 0.4rem !important;
        border-bottom: 1px dashed rgba(217, 154, 25, 0.25);
    }
    .site-header .nav-link::after {
        display: none;
    }
    .site-header .nav-link.active {
        color: var(--orange);
    }
    .brand-text strong {
        font-size: 1.1rem;
    }
    .brand-text small {
        font-size: 0.48rem;
    }
    .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
    .navbar .btn-book-header {
        margin: 14px 0 4px;
        display: inline-block;
    }
}

/* ================================================================
   HERO — Swiper slider
   ================================================================ */
.heroSwiper {
    width: 100%;
    height: 100vh;
    min-height: 620px;
}
.hero-slide {
    position: relative;
    overflow: hidden;
}
.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 7s ease;
}
.hero-slide.swiper-slide-active .hero-bg {
    transform: scale(1);
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(40, 12, 3, 0.55) 0%,
        rgba(40, 12, 3, 0.28) 40%,
        rgba(51, 16, 5, 0.82) 100%
    );
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(40, 12, 3, 0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--sand);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-kicker::before,
.hero-kicker::after {
    content: "";
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-kicker::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-title {
    font-family: var(--serif);
    color: var(--cream);
    font-size: clamp(2.5rem, 6.4vw, 4.9rem);
    line-height: 1.1;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
    margin-bottom: 18px;
    max-width: 1000px;
}
.hero-title .gold-accent {
    color: var(--gold);
    font-style: normal;
}
.hero-sub {
    color: rgba(255, 248, 234, 0.92);
    font-size: clamp(1rem, 1.7vw, 1.28rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    max-width: 680px;
    margin-bottom: 14px;
}
.hero-tagline {
    color: var(--gold);
    font-size: 0.86rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 34px;
}
.hero-slide .hero-content > * {
    opacity: 0;
    transform: translateY(36px);
}
.hero-slide.swiper-slide-active .hero-content > * {
    animation: heroRise 1s var(--ease) forwards;
}
.hero-slide.swiper-slide-active .hero-content > *:nth-child(1) {
    animation-delay: 0.25s;
}
.hero-slide.swiper-slide-active .hero-content > *:nth-child(2) {
    animation-delay: 0.45s;
}
.hero-slide.swiper-slide-active .hero-content > *:nth-child(3) {
    animation-delay: 0.62s;
}
.hero-slide.swiper-slide-active .hero-content > *:nth-child(4) {
    animation-delay: 0.78s;
}
.hero-slide.swiper-slide-active .hero-content > *:nth-child(5) {
    animation-delay: 0.95s;
}
@keyframes heroRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-pagination {
    bottom: 112px !important;
    z-index: 5;
}
.hero-pagination .swiper-pagination-bullet {
    width: 34px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 248, 234, 0.4);
    opacity: 1;
    transition: all 0.4s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 52px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 194, 113, 0.55);
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(51, 16, 5, 0.25);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.35s ease;
}
.hero-nav:hover {
    background: var(--gold);
    color: var(--brown);
    border-color: var(--gold);
}
.hero-prev {
    left: 34px;
}
.hero-next {
    right: 34px;
}
@media (max-width: 767.98px) {
    .hero-nav {
        display: none;
    }
}

.scroll-cue {
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    color: var(--brown);
    font-size: 1.35rem;
    animation: cueBounce 2s infinite ease-in-out;
}
@keyframes cueBounce {
    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, 12px);
        opacity: 0.4;
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 5;
    width: 100%;
}

/* ================================================================
   HOME — Welcome
   ================================================================ */
.frame-wrap {
    position: relative;
    padding: 0 0 34px 34px;
}
.frame-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 78%;
    height: 78%;
    border: 2px solid var(--gold);
    border-radius: 18px;
    z-index: 0;
}
.frame-wrap::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 78%;
    height: 78%;
    border: 1px dashed rgba(217, 154, 25, 0.55);
    border-radius: 14px;
    z-index: 0;
}
.frame-wrap img {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    object-fit: cover;
}
.frame-badge {
    position: absolute;
    top: -30px;
    right: -14px;
    z-index: 2;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 100%);
    border: 2px dashed var(--gold);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: var(--shadow-card);
    animation: slowSpin 22s linear infinite paused;
}
.frame-badge .bi {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.frame-badge span {
    font-family: var(--serif);
    font-size: 0.82rem;
    line-height: 1.3;
}
.frame-badge small {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--sand);
    text-transform: uppercase;
}
@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 7px 0;
    font-weight: 400;
}
.check-list .bi {
    color: var(--teal);
    font-size: 1.05rem;
    margin-top: 3px;
    flex: 0 0 auto;
}
.check-list.on-dark .bi {
    color: var(--gold);
}

.mini-tag {
    display: inline-block;
    background: rgba(217, 154, 25, 0.12);
    color: var(--brown);
    border: 1px solid rgba(217, 154, 25, 0.35);
    border-radius: 50rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    margin: 0 6px 8px 0;
}

/* ================================================================
   HOME — Experience cards
   ================================================================ */
.exp-card {
    background: var(--white);
    border-radius: 18px;
    padding: 38px 26px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 154, 25, 0.18);
    box-shadow: 0 6px 22px rgba(74, 23, 8, 0.06);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    display: block;
}
.exp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}
.exp-card:hover::before {
    transform: scaleX(1);
}
.exp-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    background: radial-gradient(circle at 30% 25%, #fff6e0, #f7e6c2);
    border: 2px dashed rgba(217, 154, 25, 0.5);
    transition: all 0.45s var(--ease);
}
.exp-card:hover .exp-icon {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--brown);
    transform: rotate(-8deg) scale(1.06);
    border-style: solid;
}
.exp-card h3 {
    margin-bottom: 10px;
    font-size: 1.32rem;
}
.exp-card p {
    font-size: 0.94rem;
    color: var(--muted);
    margin-bottom: 12px;
}
.exp-link {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.exp-link .bi {
    transition: transform 0.3s ease;
}
.exp-card:hover .exp-link .bi {
    transform: translateX(6px);
}

/* ================================================================
   HOME — Package highlight (dark)
   ================================================================ */
.package-shell {
    position: relative;
}
.package-card {
    background: linear-gradient(180deg, var(--cream) 0%, #fdf1d6 100%);
    border-radius: 22px;
    padding: 34px 32px;
    position: relative;
    border: 1px solid rgba(232, 194, 113, 0.8);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.package-card::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px dashed rgba(217, 154, 25, 0.55);
    border-radius: 15px;
    pointer-events: none;
}
.package-flag {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, var(--red), #b0101c);
    color: var(--cream);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 0.42rem 1.4rem;
    border-radius: 50rem;
    box-shadow: 0 8px 20px rgba(213, 30, 42, 0.4);
    white-space: nowrap;
}
.package-card h3 {
    font-size: 1.65rem;
    margin-bottom: 4px;
}
.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 22px;
    margin: 18px 0 20px;
}
.incl-grid li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 0.92rem;
    padding: 3.5px 0;
    list-style: none;
}
.incl-grid {
    list-style: none;
    padding: 0;
}
.incl-grid .bi {
    color: var(--teal);
    margin-top: 4px;
    flex: 0 0 auto;
}
@media (max-width: 575.98px) {
    .incl-grid {
        grid-template-columns: 1fr;
    }
}
.price-note {
    background: rgba(217, 154, 25, 0.12);
    border: 1px dashed rgba(217, 154, 25, 0.5);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
}
.price-note strong {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--brown);
    display: block;
}
.price-note small {
    color: #85683f;
    letter-spacing: 0.08em;
}

.pkg-side-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    border: 1.5px solid rgba(232, 194, 113, 0.5);
    background: rgba(217, 154, 25, 0.1);
}
.pkg-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.pkg-point h3 {
    font-size: 1.18rem;
    margin-bottom: 4px;
}
.pkg-point p {
    font-size: 0.93rem;
    color: #d9c39a;
    margin: 0;
}

/* ================================================================
   HOME — Activity image cards
   ================================================================ */
.activity-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-card);
}
.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}
.activity-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(51, 16, 5, 0.05) 40%, rgba(51, 16, 5, 0.88) 100%);
    transition: all 0.45s ease;
}
.activity-card:hover img {
    transform: scale(1.08);
}
.activity-card:hover::after {
    background: linear-gradient(185deg, rgba(51, 16, 5, 0.2) 30%, rgba(51, 16, 5, 0.92) 100%);
}
.activity-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.activity-label h3 {
    color: var(--cream);
    font-size: 1.28rem;
    margin: 0;
}
.activity-label small {
    display: block;
    color: var(--sand);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--sans);
    margin-top: 2px;
}
.activity-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 194, 113, 0.7);
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease);
}
.activity-card:hover .activity-arrow {
    background: var(--gold);
    color: var(--brown);
    transform: rotate(-45deg);
    border-color: var(--gold);
}

/* ================================================================
   HOME — Cultural evening (dark with bg)
   ================================================================ */
.culture-section {
    position: relative;
    overflow: hidden;
}
.culture-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.16;
}
.culture-content {
    position: relative;
    z-index: 2;
}
.culture-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.culture-item .pkg-side-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 1.15rem;
}
.culture-item h3 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.culture-item p {
    font-size: 0.9rem;
    color: #d9c39a;
    margin: 0;
}
.culture-photo {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(232, 194, 113, 0.45);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.culture-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.culture-photo .photo-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(51, 16, 5, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(232, 194, 113, 0.4);
    border-radius: 14px;
    color: var(--cream);
    padding: 12px 18px;
    font-family: var(--serif);
}
.culture-photo .photo-tag small {
    display: block;
    font-family: var(--sans);
    color: var(--sand);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ================================================================
   HOME — Stay
   ================================================================ */
.stay-collage {
    position: relative;
    padding-bottom: 70px;
}
.stay-collage .main-img {
    width: 88%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}
.stay-collage .float-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    border-radius: 16px;
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-soft);
}
.stay-collage .stay-badge {
    position: absolute;
    top: -24px;
    left: -10px;
    z-index: 3;
    background: linear-gradient(135deg, var(--teal), #006b6b);
    color: var(--cream);
    border-radius: 14px;
    padding: 12px 20px;
    font-family: var(--serif);
    box-shadow: 0 14px 30px rgba(0, 140, 140, 0.35);
    transform: rotate(-4deg);
}
.stay-collage .stay-badge small {
    display: block;
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ================================================================
   HOME — Journey timeline
   ================================================================ */
.journey {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.journey::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.j-item {
    position: relative;
    width: 50%;
    padding: 0 46px 44px 0;
}
.j-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 44px 46px;
}
.j-dot {
    position: absolute;
    top: 6px;
    right: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.j-dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}
.j-item:nth-child(even) .j-dot {
    right: auto;
    left: -11px;
}
.j-card {
    background: var(--white);
    border: 1px solid rgba(217, 154, 25, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(74, 23, 8, 0.07);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.j-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}
.j-time {
    display: inline-block;
    background: linear-gradient(120deg, var(--gold), var(--orange));
    color: var(--brown);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 50rem;
    padding: 0.28rem 0.95rem;
    margin-bottom: 10px;
}
.j-card h3 {
    font-size: 1.14rem;
    margin-bottom: 4px;
}
.j-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}
@media (max-width: 767.98px) {
    .journey::before {
        left: 12px;
    }
    .j-item,
    .j-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 30px 44px;
    }
    .j-item .j-dot,
    .j-item:nth-child(even) .j-dot {
        left: 1px;
        right: auto;
    }
}

/* ================================================================
   HOME — Why choose us
   ================================================================ */
.why-card {
    background: var(--white);
    border-radius: 18px;
    padding: 34px 26px;
    height: 100%;
    border: 1px solid rgba(217, 154, 25, 0.18);
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease);
}
.why-card::after {
    content: attr(data-num);
    position: absolute;
    top: 8px;
    right: 18px;
    font-family: var(--serif);
    font-size: 3.4rem;
    color: rgba(217, 154, 25, 0.13);
    line-height: 1;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(217, 154, 25, 0.5);
}
.why-card .exp-icon {
    margin: 0 0 18px;
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
}
.why-card h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0;
}

/* ================================================================
   Gallery grids (home preview + gallery page)
   ================================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 16px;
    grid-auto-flow: dense;
}
.g-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.g-item.tall {
    grid-row: span 2;
}
.g-item.wide {
    grid-column: span 2;
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}
.g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, transparent 55%, rgba(51, 16, 5, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
}
.g-item:hover::after {
    opacity: 1;
}
.g-item:hover img {
    transform: scale(1.09);
}
.g-caption {
    position: absolute;
    left: 16px;
    bottom: 12px;
    z-index: 2;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 0.98rem;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.45s var(--ease);
}
.g-caption small {
    display: block;
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sand);
}
.g-item:hover .g-caption {
    opacity: 1;
    transform: translateY(0);
}
.g-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 248, 234, 0.92);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s var(--ease);
}
.g-item:hover .g-zoom {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 190px;
    }
}
@media (max-width: 767.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
        gap: 12px;
    }
    .g-item.wide {
        grid-column: span 2;
    }
}

/* Gallery filter pills */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-btn {
    border: 1.5px solid rgba(217, 154, 25, 0.45);
    background: transparent;
    color: var(--brown);
    border-radius: 50rem;
    padding: 0.5rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
}
.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.filter-btn.active {
    background: linear-gradient(120deg, var(--gold), var(--orange));
    color: var(--brown);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(217, 154, 25, 0.35);
}
.g-hidden {
    display: none;
}

/* ================================================================
   Lightbox (vanilla)
   ================================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(38, 10, 3, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(6px);
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 88vw;
    max-height: 78vh;
    border-radius: 12px;
    border: 2px solid rgba(232, 194, 113, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.94);
    transition: transform 0.4s var(--ease);
}
.lightbox.open img {
    transform: scale(1);
}
.lb-caption {
    color: var(--sand);
    font-family: var(--serif);
    margin-top: 16px;
    font-size: 1.05rem;
}
.lb-counter {
    color: rgba(255, 248, 234, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-top: 6px;
}
.lb-btn {
    position: absolute;
    background: none;
    border: 1.5px solid rgba(232, 194, 113, 0.55);
    color: var(--sand);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.lb-btn:hover {
    background: var(--gold);
    color: var(--brown);
    border-color: var(--gold);
}
.lb-close {
    top: 26px;
    right: 30px;
}
.lb-prev {
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
}
.lb-next {
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767.98px) {
    .lb-prev {
        left: 8px;
    }
    .lb-next {
        right: 8px;
    }
    .lb-close {
        top: 14px;
        right: 14px;
    }
}

/* ================================================================
   CTA band
   ================================================================ */
.cta-band {
    position: relative;
    overflow: hidden;
}
.cta-band .cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(51, 16, 5, 0.94) 20%,
        rgba(51, 16, 5, 0.55) 65%,
        rgba(51, 16, 5, 0.35) 100%
    );
}
.cta-inner {
    position: relative;
    z-index: 2;
    padding: 96px 0;
}
.cta-inner h2 {
    color: var(--cream);
}
.cta-inner p {
    color: #e9d5a8;
}

/* ================================================================
   Contact info cards / Footer
   ================================================================ */
.info-card {
    background: var(--white);
    border-radius: 18px;
    padding: 34px 26px;
    height: 100%;
    border: 1px solid rgba(217, 154, 25, 0.18);
    text-align: center;
    transition: all 0.4s var(--ease);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}
.info-card .exp-icon {
    margin: 0 auto 16px;
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
}
.info-card h3 {
    font-size: 1.14rem;
    margin-bottom: 8px;
}
.info-card p,
.info-card a {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 4px;
    display: block;
}
.info-card a:hover {
    color: var(--orange);
}

.site-footer {
    background: linear-gradient(180deg, var(--brown) 0%, var(--brown-deep) 100%);
    color: #e8d3ac;
    padding-top: 80px;
    position: relative;
}
.site-footer h4 {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.site-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 2px;
    background: var(--gold);
}
.site-footer p {
    font-size: 0.94rem;
    color: #d9c39a;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 11px;
}
.footer-links a {
    color: #d9c39a;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a .bi {
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-links a:hover .bi {
    transform: translateX(4px);
}
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.93rem;
    color: #d9c39a;
    list-style: none;
    align-items: flex-start;
}
.footer-contact {
    padding: 0;
    margin: 0;
}
.footer-contact .bi {
    color: var(--gold);
    margin-top: 4px;
    flex: 0 0 auto;
}
.footer-contact a {
    color: #d9c39a;
}
.footer-contact a:hover {
    color: var(--gold);
}
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-row a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(232, 194, 113, 0.4);
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.35s var(--ease);
}
.social-row a:hover {
    background: var(--gold);
    color: var(--brown);
    transform: translateY(-4px);
    border-color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(232, 194, 113, 0.18);
    margin-top: 54px;
    padding: 22px 0;
    font-size: 0.86rem;
    color: #b99f73;
}
.footer-bottom a {
    color: var(--sand);
}

/* Floating buttons */
.to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 1500;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 26px rgba(217, 154, 25, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.45s var(--ease);
}
.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.to-top:hover {
    transform: translateY(-4px);
}
.wa-float {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1500;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    transition: all 0.35s var(--ease);
}
.wa-float:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

/* ================================================================
   INNER PAGES
   ================================================================ */
.inner-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.inner-hero .inner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 12, 3, 0.6) 0%, rgba(51, 16, 5, 0.55) 55%, rgba(51, 16, 5, 0.85) 100%);
}
.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cpath d='M65 16 L114 65 L65 114 L16 65 Z' fill='none' stroke='%23D99A19' stroke-opacity='0.09' stroke-width='1.2'/%3E%3C/svg%3E");
}
.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 150px 0 90px;
}
.inner-hero h1 {
    color: var(--cream);
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    text-shadow: 0 6px 26px rgba(0, 0, 0, 0.4);
    margin-bottom: 14px;
}
.crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}
.crumb a {
    color: var(--sand);
}
.crumb a:hover {
    color: var(--gold);
}
.crumb .bi {
    color: var(--gold);
    font-size: 0.7rem;
}
.crumb span.current {
    color: rgba(255, 248, 234, 0.85);
}

/* About / content imagery */
.img-frame {
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}
.quote-band {
    border-left: 4px solid var(--gold);
    background: rgba(217, 154, 25, 0.08);
    border-radius: 0 14px 14px 0;
    padding: 22px 28px;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--brown);
}
.stat-pill {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 26px 16px;
    border: 1px solid rgba(217, 154, 25, 0.2);
    height: 100%;
    box-shadow: 0 6px 18px rgba(74, 23, 8, 0.05);
}
.stat-pill .stat-num {
    font-family: var(--serif);
    font-size: 2.3rem;
    color: var(--gold);
    line-height: 1;
}
.stat-pill .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

/* Packages page */
.pkg-hero-card {
    background: linear-gradient(180deg, var(--cream) 0%, #fdf0d3 100%);
    border-radius: 24px;
    border: 1px solid rgba(232, 194, 113, 0.9);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.pkg-hero-card .pkg-head {
    background: linear-gradient(120deg, var(--brown) 0%, var(--brown-deep) 100%);
    color: var(--cream);
    padding: 30px 36px;
    position: relative;
    overflow: hidden;
}
.pkg-hero-card .pkg-head::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cpath d='M65 16 L114 65 L65 114 L16 65 Z' fill='none' stroke='%23D99A19' stroke-opacity='0.14' stroke-width='1.2'/%3E%3C/svg%3E");
}
.pkg-hero-card .pkg-head h2 {
    color: var(--cream);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.pkg-hero-card .pkg-body {
    padding: 34px 36px;
    position: relative;
}
.pkg-hero-card .pkg-body::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(217, 154, 25, 0.4);
    border-radius: 16px;
    pointer-events: none;
}
.detail-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px 28px;
    height: 100%;
    border: 1px solid rgba(217, 154, 25, 0.18);
    border-top: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(74, 23, 8, 0.06);
}
.detail-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-card h3 .bi {
    color: var(--gold);
}

/* Accordion (royal) */
.accordion.royal .accordion-item {
    border: 1px solid rgba(217, 154, 25, 0.3);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--white);
}
.accordion.royal .accordion-button {
    font-family: var(--serif);
    font-size: 1.08rem;
    color: var(--brown);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none;
}
.accordion.royal .accordion-button:not(.collapsed) {
    background: rgba(217, 154, 25, 0.1);
    color: var(--brown);
}
.accordion.royal .accordion-button:focus {
    box-shadow: none;
    border: none;
}
.accordion.royal .accordion-body {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Activities feature rows */
.feature-row {
    margin-bottom: 84px;
}
.feature-row:last-of-type {
    margin-bottom: 0;
}
.feature-img-wrap {
    position: relative;
}
.feature-img-wrap img {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: 320px;
}
.feature-tag-row {
    margin-bottom: 14px;
}
.feature-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(217, 154, 25, 0.15), rgba(245, 154, 35, 0.12));
    border: 1px solid rgba(217, 154, 25, 0.35);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

/* Stay page amenities */
.amenity-card {
    background: var(--white);
    border-radius: 16px;
    padding: 26px 22px;
    height: 100%;
    border: 1px solid rgba(217, 154, 25, 0.18);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.4s var(--ease);
}
.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}
.amenity-card .bi {
    font-size: 1.5rem;
    color: var(--teal);
    flex: 0 0 auto;
    margin-top: 2px;
}
.amenity-card h3 {
    font-size: 1.08rem;
    margin-bottom: 4px;
}
.amenity-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

/* Contact form */
.contact-shell {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(217, 154, 25, 0.25);
    overflow: hidden;
}
.form-side {
    background: linear-gradient(150deg, var(--brown) 0%, var(--brown-deep) 100%);
    padding: 44px 38px;
    position: relative;
}
.form-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cpath d='M65 16 L114 65 L65 114 L16 65 Z' fill='none' stroke='%23D99A19' stroke-opacity='0.12' stroke-width='1.2'/%3E%3C/svg%3E");
}
.form-side > * {
    position: relative;
    z-index: 2;
}
.form-side h2 {
    color: var(--cream);
}
.form-side p {
    color: #d9c39a;
    font-size: 0.96rem;
}
.f-side-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.f-side-item .bi {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 4px;
}
.f-side-item strong {
    color: var(--cream);
    font-family: var(--serif);
    font-weight: 400;
    display: block;
    font-size: 1.02rem;
}
.f-side-item span,
.f-side-item a {
    color: #d9c39a;
    font-size: 0.92rem;
}
.f-side-item a:hover {
    color: var(--gold);
}

.booking-form {
    padding: 44px 40px;
}
.booking-form .form-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
}
.booking-form .form-control,
.booking-form .form-select {
    border: 1.5px solid rgba(217, 154, 25, 0.35);
    border-radius: 12px;
    padding: 0.72rem 1rem;
    background: var(--cream);
    font-size: 0.97rem;
    color: var(--ink);
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.22rem rgba(217, 154, 25, 0.16);
    background: #fff;
}
.map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(217, 154, 25, 0.35);
}
.map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* ================================================================
   Reveal animations (vanilla JS + IntersectionObserver)
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.reveal-left {
    transform: translateX(-46px);
}
.reveal.reveal-right {
    transform: translateX(46px);
}
.reveal.reveal-zoom {
    transform: scale(0.92);
}
.reveal.in-view {
    opacity: 1;
    transform: none;
}
.rd-1 {
    transition-delay: 0.12s;
}
.rd-2 {
    transition-delay: 0.24s;
}
.rd-3 {
    transition-delay: 0.36s;
}
.rd-4 {
    transition-delay: 0.48s;
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Small screens polish */
@media (max-width: 767.98px) {
    .section-pad {
        padding: 70px 0;
    }
    .cta-inner {
        padding: 70px 0;
    }
    .frame-badge {
        width: 108px;
        height: 108px;
        top: -18px;
        right: 0;
    }
    .inner-hero {
        min-height: 52vh;
    }
    .package-card {
        padding: 28px 22px;
    }
    .hero-pagination {
        bottom: 104px !important;
    }
    .stay-collage .stay-badge {
        left: 6px;
        top: -14px;
        padding: 10px 14px;
    }
    .pkg-hero-card .pkg-body {
        padding: 26px 20px;
    }
    .booking-form,
    .form-side {
        padding: 34px 24px;
    }
}
