/* food-accommodation section styles (shared, externalised) */
/* ── Accommodation & Food section ─────────────────────────────────── */
    .ha-acf-section {
        background: var(--ha-light);
    }

    /* Intro decorative card */
    .ha-acf-intro-card {
        position: relative;

        text-align: center;
        margin: 0 auto 32px;
    }

    .ha-acf-corner {
        position: absolute;
        width: 14px;
        height: 14px;
        border-color: var(--ha-green);
        border-style: solid;
    }

    .ha-acf-corner.tl {
        top: 6px;
        left: 6px;
        border-width: 2px 0 0 2px;
    }

    .ha-acf-corner.tr {
        top: 6px;
        right: 6px;
        border-width: 2px 2px 0 0;
    }

    .ha-acf-corner.bl {
        bottom: 6px;
        left: 6px;
        border-width: 0 0 2px 2px;
    }

    .ha-acf-corner.br {
        bottom: 6px;
        right: 6px;
        border-width: 0 2px 2px 0;
    }

    .ha-acf-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, var(--ha-green) 0%, var(--ha-dark) 100%);
        color: #fff;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        padding: 7px 20px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .ha-acf-tagline {
        font-size: 1.05rem;
        font-style: italic;
        color: #555;
        line-height: 1.7;
        margin: 0;
    }

    /* Stay badges */
    .ha-acf-badges {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 24px 0 40px;
    }

    .ha-acf-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1.5px solid rgba(80, 124, 36, .3);
        border-radius: 50px;
        background: rgba(80, 124, 36, .06);
        padding: 7px 18px;
        font-size: .82rem;
        font-weight: 500;
        color: var(--ha-dark);
    }

    .ha-acf-badge svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
        color: var(--ha-green);
    }

    /* ── Room slider ──────────────────────────────────────────────────── */
    .ha-rs-wrap {
        position: relative;
        margin-top: 0;
    }

    .ha-rs-viewport {
        overflow: hidden;
        border-radius: 20px;
    }

    .ha-rs-track {
        display: flex;
        gap: 24px;
        transition: transform .55s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    .ha-rs-card {
        flex: 0 0 100%;
    }

    @media (min-width: 768px) {
        .ha-rs-card {
            flex-basis: calc(50% - 12px);
        }
    }

    /* Per-card image slider */
    .ha-rs-img-stage {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3 / 2;
    }

    .ha-rs-img-stage img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease, transform 9s ease;
    }

    .ha-rs-img-stage img.ha-rs-active {
        opacity: 1;
        transform: scale(1.04);
    }

    .ha-rs-card:hover .ha-rs-img-stage img.ha-rs-active {
        transform: scale(1.08);
    }

    .ha-rs-img-dots {
        position: absolute;
        bottom: 12px;
        right: 14px;
        z-index: 3;
        display: inline-flex;
        gap: 6px;
        padding: 6px 10px;
        background: rgba(0, 0, 0, .4);
        backdrop-filter: blur(4px);
        border-radius: 50px;
    }

    .ha-rs-img-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .5);
        border: 0;
        padding: 0;
        cursor: pointer;
        transition: background .25s, transform .25s;
    }

    .ha-rs-img-dot.ha-rs-active {
        background: #fff;
        transform: scale(1.3);
    }

    /* Room card styling */
    .ha-rs-card-inner {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 20px;
        border: 2px solid rgba(80, 124, 36, .3);
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
        height: 100%;
        transition: transform .3s, box-shadow .3s;
    }

    .ha-rs-card-inner:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(80, 124, 36, .15);
    }

    .ha-rs-room-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 2;
        background: linear-gradient(135deg, var(--ha-green) 0%, var(--ha-dark) 100%);
        color: #fff;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
    }

    .ha-rs-card-body {
        padding: 24px 24px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .ha-rs-card-body h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--ha-dark);
        margin-bottom: 10px;
    }

    .ha-rs-card-body p {
        font-size: .88rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .ha-rs-amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(80, 124, 36, .1);
    }

    .ha-rs-amenity {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(80, 124, 36, .07);
        border: 1px solid rgba(80, 124, 36, .15);
        border-radius: 50px;
        padding: 4px 12px;
        font-size: .75rem;
        font-weight: 500;
        color: var(--ha-dark);
    }

    .ha-rs-amenity svg {
        width: 11px;
        height: 11px;
        color: var(--ha-green);
    }

    /* Prev / Next arrows */
    .ha-rs-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #fff;
        border: 1.5px solid var(--ha-green);
        color: var(--ha-green);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform .25s, background .25s, color .25s;
    }

    .ha-rs-arrow:hover {
        background: linear-gradient(135deg, var(--ha-green) 0%, var(--ha-dark) 100%);
        color: #fff;
        border-color: transparent;
        transform: translateY(-50%) scale(1.08);
    }

    .ha-rs-arrow.prev {
        left: -14px;
    }

    .ha-rs-arrow.next {
        right: -14px;
    }

    .ha-rs-arrow svg {
        width: 18px;
        height: 18px;
    }

    @media (min-width: 1024px) {
        .ha-rs-arrow {
            width: 52px;
            height: 52px;
        }

        .ha-rs-arrow.prev {
            left: -22px;
        }

        .ha-rs-arrow.next {
            right: -22px;
        }
    }

    /* Pager dots */
    .ha-rs-pager {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 22px;
    }

    .ha-rs-pager-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(80, 124, 36, .25);
        border: 0;
        padding: 0;
        cursor: pointer;
        transition: all .25s;
    }

    .ha-rs-pager-dot.ha-rs-active {
        width: 32px;
        border-radius: 50px;
        background: linear-gradient(90deg, var(--ha-green), var(--ha-dark));
    }

    /* ── Food sub-section ─────────────────────────────────────────────── */
    .ha-acf-food-heading {
        text-align: center;
        margin: 56px 0 24px;
    }

    .ha-acf-food-heading h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--ha-dark);
        margin-bottom: 8px;
    }

    .ha-acf-food-heading p {
        font-size: .95rem;
        color: #666;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .ha-rs-arrow.prev {
            left: -8px;
        }

        .ha-rs-arrow.next {
            right: -8px;
        }

        .ha-rs-arrow {
            width: 36px;
            height: 36px;
        }

        .ha-rs-arrow svg {
            width: 14px;
            height: 14px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .ha-rs-track {
            transition: none !important;
        }

        .ha-rs-img-stage img {
            transition: opacity .25s !important;
            transform: none !important;
        }
    }

/* ── Accommodation — comfortable stay redesign ─────────────────────── */
    .hroom-section { background: linear-gradient(180deg, #F8F6EF 0%, #F5F2E8 40%, #EEF5E8 100%); padding: 70px 0; position: relative; overflow: hidden; }
    .hroom-section * { box-sizing: border-box; }
    .hroom-inner { position: relative; z-index: 2; }

    /* Heading */
    .hroom-title-main { font-family: Georgia, 'Times New Roman', serif; font-size: 42px; font-weight: 700; color: #2d4d18; margin: 0 0 8px; line-height: 1.15; }
    .hroom-title-main .gold { background: #43882b; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hroom-divider { display: inline-flex; align-items: center; gap: 12px; margin: 6px 0 14px; }
    .hroom-divider span { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, #43882b); }
    .hroom-divider span:last-child { background: linear-gradient(90deg, #43882b, transparent); }
    .hroom-divider svg { width: 24px; height: 24px; fill: #43882b; }
    .hroom-sub { font-size: 17px; color: #5a6b52; margin: 0 auto 44px; text-align: center; line-height: 1.6; }

    /* Room carousel (one room per slide) */
    .hroom-carousel { position: relative; padding: 0 32px; }
    .hroom-viewport { overflow: hidden; padding: 16px 4px; }
    .hroom-track { display: flex; gap: 28px; transition: transform .55s cubic-bezier(.4,0,.2,1); will-change: transform; }
    .hroom-track > .hroom-slide { flex: 0 0 auto; display: flex; flex-direction: column; gap: 26px; }
    .hroom-slide > .hroom-row { width: 100%; }
    .hroom-nav {
        position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
        width: 44px; height: 44px; border-radius: 50%; background: #fff;
        border: 1px solid #e0d4ad; color: #2d4d18; box-shadow: 0 6px 18px rgba(80,60,20,.14);
        display: flex; align-items: center; justify-content: center; cursor: pointer;
        transition: background .25s, color .25s, transform .25s;
    }
    .hroom-nav:hover { background: linear-gradient(135deg, #43882b, #43882b); color: #fff; border-color: transparent; transform: translateY(-50%) scale(1.08); }
    .hroom-nav svg { width: 18px; height: 18px; }
    .hroom-nav.prev { left: -8px; }
    .hroom-nav.next { right: -8px; }
    .hroom-pager { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
    .hroom-pager button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: rgba(160,130,40,.28); transition: all .3s; }
    .hroom-pager button.is-active { width: 30px; border-radius: 50px; background: linear-gradient(90deg, #43882b, #43882b); }
    .hroom-row {
        display: flex; flex-direction: column; gap: 0;
        background: #fffdf8; border: 1.5px solid var(--ha-green); border-radius: 18px; overflow: hidden;
        box-shadow: 0 10px 30px rgba(80,60,20,.07);
    }
    .hroom-media { position: relative; width: 100%; height: 600px; aspect-ratio: 1000 / 600; background: #efe9da; }
    .hroom-stage { position: absolute; inset: 0; }
    .hroom-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
    .hroom-stage img.is-active { opacity: 1; }
    .hroom-badge {
        position: absolute; top: 16px; left: 16px; z-index: 3;
        background: linear-gradient(135deg, #97BC17 0%, #507C24 100%); color: #fff;
        font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
        padding: 7px 16px; border-radius: 50px; box-shadow: 0 4px 12px rgba(120,90,20,.3);
    }
    .hroom-dots { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 7px; }
    .hroom-dots button {
        width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; cursor: pointer;
        background: rgba(255,255,255,.55); transition: background .2s ease, transform .2s ease;
    }
    .hroom-dots button.is-active { background: #43882b; transform: scale(1.2); }

    .hroom-info { padding: 30px 34px; display: flex; flex-direction: column; justify-content: center; }
    .hroom-info h3 { font-family: Georgia, serif; font-size: 27px; font-weight: 700; color: #2d4d18; margin: 0 0 12px; }
    .hroom-info > p { font-size: 15.5px; line-height: 1.65; color: #5a6b52; margin: 0 0 22px; }
    .hroom-amenities { display: flex; flex-wrap: wrap; gap: 12px; }
    .hroom-amenity {
        display: inline-flex; align-items: center; gap: 8px;
        background: linear-gradient(135deg, #97BC17 0%, #507C24 100%); border: 1px solid transparent; border-radius: 50px;
        padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: #fff;
    }
    .hroom-amenity svg { width: 15px; height: 15px; stroke: #fff; flex: 0 0 auto; }

    /* Feature bar */
    .hroom-features {
        margin-top: 30px; background: #fffdf8; border: 1px solid #ece3cf; border-radius: 18px;
        padding: 26px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    }
    .hroom-feature { display: flex; align-items: center; gap: 14px; }
    .hroom-feat-icon {
        flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
        border: 1.5px solid #d9c489; background: #f7efdc;
        display: flex; align-items: center; justify-content: center;
    }
    .hroom-feat-icon svg { width: 26px; height: 26px; fill: #3c6322; }
    .hroom-feature strong { display: block; font-size: 14.5px; color: #2d4d18; font-weight: 700; line-height: 1.2; margin-bottom: 3px; }
    .hroom-feature span { font-size: 12.5px; color: #7a8366; line-height: 1.4; }

    @media (max-width: 991px) {
        .hroom-title-main { font-size: 32px; }
        .hroom-features { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
        /* Mobile/tablet serves 600x400 (3:2) images — drop the fixed 600px
           height so the media block scales with the viewport instead. */
        .hroom-media { height: auto; aspect-ratio: 3 / 2; }
    }
    @media (max-width: 575px) {
        .hroom-section { padding: 50px 0; }
        .hroom-section .container { padding-left: 10px; padding-right: 10px; }
        .hroom-title-main { font-size: 25px; }
        .hroom-info { padding: 24px; }
        .hroom-features { grid-template-columns: 1fr; }
        .hroom-carousel { padding: 0 6px; }
        .hroom-nav { width: 38px; height: 38px; }
        .hroom-nav.prev { left: -2px; }
        .hroom-nav.next { right: -2px; }
    }

/* ── Food — Sattvic meals redesign ─────────────────────────────────── */
    .hfood-section { background: transparent; padding: 40px 0 0; position: relative; overflow: hidden; }
    .hfood-section * { box-sizing: border-box; }
    .hfood-inner { position: relative; z-index: 2; }

    .hfood-grid { display: grid; grid-template-columns: 46% 1fr; gap: 44px; align-items: center; }

    /* Left media */
    .hfood-media { display: flex; flex-direction: column; gap: 22px; }
    .hfood-media img {
        width: 100%; height: 290px; object-fit: cover; display: block;
        border-radius: 16px; box-shadow: 0 12px 32px rgba(80,60,20,.14);
    }

    /* Food image slider */
    .hfood-slider { position: relative; width: 100%; height: 600px; aspect-ratio: 1000 / 594; border-radius: 16px; border:1.5px solid var(--ha-green); overflow: hidden; box-shadow: 0 12px 32px rgba(80,60,20,.14); }
    .hfood-slider .hfood-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; border-radius: 0; box-shadow: none; }
    .hfood-slider .hfood-slide.is-active { opacity: 1; }
    .hfood-dots { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
    .hfood-dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: all .3s ease; }
    .hfood-dot.is-active { background: #fff; width: 24px; border-radius: 6px; }
    .hfood-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(20,25,15,.4); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s ease; }
    .hfood-arrow:hover { background: rgba(20,25,15,.7); }
    .hfood-arrow.prev { left: 14px; }
    .hfood-arrow.next { right: 14px; }
    .hfood-slider .hfood-slide { object-fit: cover; }

    /* Right content */
    .hfood-title {
        font-family: Georgia, 'Times New Roman', serif; font-size: 40px; font-weight: 700;
        color: #2d4d18; line-height: 1.2; margin: 0 0 6px; text-align: center;
    }
    .hfood-title .gold { background: linear-gradient(135deg, #43882b, #43882b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hfood-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 6px 0 26px; }
    .hfood-divider span { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, #43882b); }
    .hfood-divider span:last-child { background: linear-gradient(90deg, #43882b, transparent); }
    .hfood-divider svg { width: 24px; height: 24px; fill: #43882b; }
    .hfood-head { margin: 0 auto 40px; text-align: center; }
    .hfood-lead { font-size: 17px; line-height: 1.8; color: #5a6b52; margin: 0 auto; text-align:center; }
   
    @media (max-width: 991px) { .hfood-showcase { grid-template-columns: 1fr; gap: 28px; } }

    /* Quote card with corner brackets */
    .hfood-quote {
        position: relative; border: 1px solid rgba(201,162,74,.35); border-radius: 10px;
        padding: 30px 34px 26px; text-align: center; margin-bottom: 26px; background: rgba(255,255,255,.35);
    }
    .hfc-corner { position: absolute; width: 22px; height: 22px; border: 0 solid #43882b; }
    .hfc-corner.tl { top: 9px; left: 9px; border-top-width: 2px; border-left-width: 2px; }
    .hfc-corner.tr { top: 9px; right: 9px; border-top-width: 2px; border-right-width: 2px; }
    .hfc-corner.bl { bottom: 9px; left: 9px; border-bottom-width: 2px; border-left-width: 2px; }
    .hfc-corner.br { bottom: 9px; right: 9px; border-bottom-width: 2px; border-right-width: 2px; }
    .hfood-quote p {
        font-family: Georgia, serif; font-style: italic; font-size: 18px; line-height: 1.65;
        color: #4a5a36; margin: 0 0 22px;
    }
    .hfood-badge {
        display: inline-block; background: linear-gradient(135deg, #97BC17 0%, #507C24 100%); color: #fff;
        font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
        padding: 11px 28px; border-radius: 50px; box-shadow: 0 6px 16px rgba(150,110,20,.28);
    }
    .hfood-desc { font-size: 16px; line-height: 1.8; color: #5a6b52; margin: 0; }

    /* Feature bar */
    .hfood-features {
        margin-top: 46px; background: rgba(255,255,255,.5); border: 1px solid #e8dcc0; border-radius: 16px;
        padding: 26px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    }
    .hfood-feature { display: flex; align-items: flex-start; gap: 14px; }
    .hfood-feat-icon {
        flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
        border: 1.5px solid #cdbf8a; background: #fbf6e8; display: flex; align-items: center; justify-content: center;
    }
    .hfood-feat-icon svg { width: 25px; height: 25px; fill: #3c6322; }
    .hfood-feature strong { display: block; font-size: 15px; color: #2d4d18; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
    .hfood-feature span { font-size: 13px; color: #7a8366; line-height: 1.45; }

    @media (max-width: 991px) {
        .hfood-grid { grid-template-columns: 1fr; gap: 30px; }
        .hfood-title { font-size: 31px; }
        .hfood-features { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
        /* Mobile/tablet serves 600x400 (3:2) images */
        .hfood-slider { height: auto; aspect-ratio: 3 / 2; }
    }
    @media (max-width: 575px) {
        .hfood-section { padding: 30px 0 0; }
        .hfood-title { font-size: 25px; }
        .hfood-media img { height: 220px; }
        .hfood-quote { padding: 24px; }
        .hfood-features { grid-template-columns: 1fr; }
    }

    /* Sattvic meals — slider + content merged into one card */
    .hfood-merged-card { background: #fff; border: 1.5px solid var(--ha-green); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
    .hfood-merged-card .hfood-slider { border: none; border-radius: 0; box-shadow: none; }
    .hfood-merged-card .hfood-below { margin-top: 0; border: none; border-radius: 0; box-shadow: none; }
    .hfood-below { margin-top: 30px; background: #fff; border: 2px solid rgba(80,124,36,.3); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.05); padding: 30px 34px; }
    .hfood-below > p { font-size: 16px; line-height: 1.8; color: #5a6b52; margin: 0 0 20px; }
    .hfood-chips { display: flex; flex-wrap: wrap; gap: 12px; }
    .hfood-chip { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #97BC17 0%, #507C24 100%); color: #fff; font-size: 15px; font-weight: 600; padding: 10px 20px; border-radius: 50px; }
    .hfood-chip i { font-size: 12px; }
    @media (max-width: 575px) { .hfood-below { padding: 24px; } }
