:root {
    --ink: #1f2026;
    --gold: #ffb12b;
    --blue: #79a9d2;
    --panel: #eff3dc;
    --footer: #78a7cd;
    --font:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: var(--font);
    letter-spacing: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    margin: 0 auto;
}

.sc-pt-70 {
    padding-top: 70px;
}

.sc-pb-70 {
    padding-bottom: 70px;
}

.sc-pt-50 {
    padding-top: 50px;
}

.sc-pb-50 {
    padding-bottom: 50px;
}

.sc-pt-40 {
    padding-top: 40px;
}

.sc-pb-40 {
    padding-bottom: 40px;
}

.sc-pt-30 {
    padding-top: 30px;
}

.sc-pb-30 {
    padding-bottom: 30px;
}

.mc-mt-50 {
    margin-top: 50px;
}

.mc-mb-50 {
    margin-bottom: 50px;
}

.mc-mb-25 {
    margin-bottom: 25px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 22px 0 16px;
    background: #ffffff;
    transition:
        padding 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    padding: 12px 0 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    width: 129px;
    height: 46px;
}

.main-nav {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    position: relative;
    list-style-type: none;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: -8px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav>ul>li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #1f2026;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--gold);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 177, 43, 0.3);
    color: #ffffff;
}

.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #5b95ac;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.btn-phone:hover {
    transform: scale(1.08);
    background: #4a7d91;
    color: #ffffff;
}

.btn-phone i {
    line-height: 1;
}

.main-nav a:hover,
.main-nav .current-menu-item>a,
.main-nav .current-page-ancestor>a,
.main-nav li:focus-within>a {
    color: var(--gold);
}

.main-nav a:hover::before,
.main-nav .current-menu-item>a::before,
.main-nav .current-page-ancestor>a::before,
.main-nav li:focus-within>a::before {
    transform: scaleX(1);
}

.main-nav .menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 2px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    pointer-events: none;
}

.sub-menu a::before {
    display: none;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    display: grid;
    min-width: 210px;
    padding: 12px 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.menu-item-has-children:hover>.sub-menu,
.menu-item-has-children:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    padding: 9px 18px;
    color: var(--ink);
    font-size: 15px;
}

.sub-menu a:hover {
    background: var(--panel);
}

/* Sub-menu Category Header */
.sub-menu .nav-category {
    margin-bottom: -5px;
}

.sub-menu .nav-category>a {
    color: #5b95ac;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 12px !important;
    margin: 0 18px 8px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    pointer-events: none;
    cursor: default;
}

.sub-menu .nav-category>a:hover {
    background: transparent !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sc-pt-70 {
        padding-top: 35px;
    }

    .sc-pb-70 {
        padding-bottom: 35px;
    }

    .sc-pt-50 {
        padding-top: 25px;
    }

    .sc-pb-50 {
        padding-bottom: 25px;
    }

    .sc-pt-40 {
        padding-top: 20px;
    }

    .sc-pb-40 {
        padding-bottom: 20px;
    }

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

    .header-right {
        gap: 12px;
    }

    .hero-copy {
        left: 24px;
        max-width: calc(100% - 48px);
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .intro h2 {
        font-size: 32px;
    }

    .section-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-top h2 {
        font-size: 28px;
    }

    .feedback-wrap {
        position: relative;
    }

    .feature-copy h2,
    .benefits h2 {
        font-size: 20px;
    }

    .feedback .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .feedback .arrow-prev {
        left: -40px;
    }

    .feedback .arrow-next {
        right: -40px;
    }

    .hero {
        background: none;
    }

    .hero-static,
    .hero-slider {
        position: relative;
        min-height: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .hero-bg,
    .hero-slide img {
        position: static;
        width: 100%;
        height: auto;
        object-fit: initial;
        border-radius: 0;
    }

    .hero-copy {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        background: #ffffff;
        padding: 20px;
        text-align: center;
        max-width: none;
    }

    .hero-copy h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .logo img {
        width: 100px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .intro h2 {
        font-size: 24px;
    }

    .intro h3 {
        font-size: 20px;
    }

    .section-top h2 {
        font-size: 24px;
    }

    .feature-panel h2 {
        font-size: 24px;
    }

    .benefits h2 {
        font-size: 24px;
    }

    .connect h2 {
        font-size: 24px;
    }

    .feedback h2 {
        font-size: 24px;
    }

    .feedback .arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .intro h2 {
        font-size: 24px;
    }

    .intro h3 {
        font-size: 20px;
    }
}

.hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.hero-slider,
.hero-static {
    position: relative;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-static {

}

.hero-static .hero-bg {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    animation: heroModernZoom 10s linear forwards;
}

.hero-static .hero-copy h1,
.hero-static .hero-copy p {
    transform: translateY(0);
}

.hero-slide {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hero-slide img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    transform: scale(1);
}

.hero-slider .swiper-slide-active img {
    animation: heroModernZoom 10s linear forwards;
}

/* Hero Slider Navigation */
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 24px;
    border-radius: 5px;
}

.hero-slider .swiper-slide-duplicate-active img {
    animation: none;
}

@keyframes heroModernZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-copy {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    padding: 0 70px;
    z-index: 10;
}

.reveal-box {
    overflow: hidden;
    margin-bottom: 12px;
}

.hero-copy h1 {
    margin: 0;
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-copy p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transform: translateY(105%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.swiper-slide-active .hero-copy h1,
.swiper-slide-active .hero-copy p,
.swiper-slide-duplicate-active .hero-copy h1,
.swiper-slide-duplicate-active .hero-copy p {
    transform: translateY(0);
}

.intro {
    text-align: center;
}

.intro p {
    margin: 0;
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.intro h2 {
    margin: 13px 0 17px;
    color: #000000;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.intro span {
    display: block;
    width: 74px;
    height: 3px;
    margin: 0 auto;
    background: var(--gold);
}

.intro h3 {
    margin: 22px 0 0;
    color: #8c8c8c;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.stays {}

.section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.section-top h2,
.feedback>h2,
.connect h2 {
    margin: 0;
    color: #1d1e23;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.arrow {
    position: relative;
    width: 41px;
    height: 41px;
    padding: 0;
    border: 1px solid #242424;
    border-radius: 50%;
    color: #151515;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-60%, -50%) rotate(45deg);
}

.arrow-prev::before {
    transform: translate(-35%, -50%) rotate(225deg);
}

.arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 20px rgba(255, 177, 43, 0.24);
}

.arrow.muted {
    color: #d7d7d7;
    border-color: #e5e5e5;
}

.stay-slider,
.review-slider {
    overflow: hidden;
}

.stay-slider .swiper-wrapper,
.review-slider .swiper-wrapper {
    align-items: stretch;
}

.stay-card {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease;
}

.stay-card img {
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.stay-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
    pointer-events: none;
    transition:
        height 0.28s ease,
        background 0.28s ease;
}

.stay-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 42px rgba(31, 32, 38, 0.18);
}

.stay-card:hover img {
    transform: scale(1.055);
}

.stay-card:hover::after {
    height: 58%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.88));
}

.stay-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 21px;
    z-index: 3;
    color: #ffffff;
    transition: transform 0.28s ease;
}

.stay-card:hover .stay-info {
    transform: translateY(-6px);
}

.stay-info h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.stay-info p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #ffd51c;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
}

.stay-info .bi {
    color: #ffffff;
    font-size: 0;
}

.stay-info .bi-geo-alt {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.stay-info .bi-geo-alt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.feature-panel,
.connect {
    align-items: center;
    border-radius: 18px;
    background: var(--panel);
    padding-left: 50px;
    padding-right: 50px;
}

.feature-copy img {
    width: 129px;
    height: 46px;
    margin-bottom: 43px;
}

.feature-copy h2,
.benefits h2 {
    margin: 0;
    color: #000000;
    font-size: 28px;
    line-height: 1.14;
    font-weight: 800;
}

.feature-copy p {
    max-width: 300px;
    margin: 20px 0 0;
    color: #292a2f;
    font-size: 16px;
    line-height: 1.43;
    font-weight: 400;
}

.feature-copy a {
    text-underline-offset: 2px;
}

.feature-art {
    position: relative;
    min-height: 358px;
}

.feature-art .blue-circle {
    position: absolute;
    top: 0;
    left: -10px;
    width: 305px;
}

.feature-art .orange-circle {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 339px;
}

.feature-art .single-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.benefits {
    padding-left: 8px;
}

.benefits h2 {
    margin-bottom: 62px;
}

.benefits ul {
    display: grid;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #131313;
    font-size: 15px;
    line-height: 1.3;
    transition:
        transform 0.22s ease,
        color 0.22s ease;
}

.benefits li:hover {
    color: #000000;
    transform: translateX(7px);
}

.benefits img {
    width: 46px;
    height: 48px;
    flex: 0 0 auto;
}

.feedback {
    text-align: center;
}

.feedback>h2 {
    margin-bottom: 50px;
    color: #282930;
    font-size: 42px;
}

.feedback-wrap {
    position: relative;
    padding: 0 92px;
}

.review-slider .swiper-wrapper {
    text-align: left;
}

.review {
    height: auto;
    text-align: left;
}

.review img {
    width: 120px;
    height: 120px;
    margin: 0 auto 46px;
    border-radius: 50%;
}

.review p {
    min-height: 160px;
    margin: 0;
    color: #333439;
    font-size: 16px;
    line-height: 1.56;
    font-weight: 400;
}

.review h3 {
    margin: 20px 0 0;
    color: #25262b;
    font-size: 18px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 800;
}

.review h3 span {
    color: #333439;
    font-weight: 400;
}

.feedback-wrap>.arrow {
    position: absolute;
    top: 66%;
    z-index: 5;
    transform: translateY(-50%);
}

.feedback-wrap>.arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.feedback-prev {
    left: 0;
}

.feedback-next {
    right: 0;
}

.more-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 286px;
    height: 58px;
    margin-top: 72px;
    border-radius: 28px;
    color: #ffffff;
    background: var(--gold);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.more-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(255, 177, 43, 0.35);
}

.connect h2 {
    margin-bottom: 18px;
    color: #000000;
}

.connect-copy p {
    max-width: 390px;
    margin: 0 0 29px;
    color: #27282d;
    font-size: 17px;
    line-height: 1.46;
}

.post-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #151515;
    font-size: 15px;
    font-weight: 800;
    text-underline-offset: 2px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
    text-decoration: none;
}

.post-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.post-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.post-link:hover::after {
    transform: scaleX(1);
}

.socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.socials a:first-child img,
.socials a:last-child img {
    width: 27px;
    height: 27px;
}

.instagram-shot {
    background: #ffffff;
    transition: transform 0.25s ease;
}

.instagram-shot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.socials a:hover img {
    transform: translateY(-4px);
}

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .animated {
        transform: none;
        left: 0;
        right: 0;
        max-width: 100%;
    }

    .header .container {
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
    }

    .header-logo {
        flex: 0 0 auto;
    }

    .header-logo img {
        max-width: 110px;
        height: auto;
    }

    .btn-book,
    .header-cta .btn-book {
        display: none;
    }

    .header-cta {
        display: flex;
        align-items: center;
        margin-right: 50px;
    }

    .btn-phone {
        margin-left: auto;
    }

    .menu-trigger {
        flex: 0 0 auto;
        margin-left: 0;
    }

    h1,
    .hero-copy h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    h2,
    .intro h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    h3,
    .facility-card h3,
    .contact-box h3 {
        font-size: 18px;
    }

    .intro p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .feature-panel,
    .connect {
        padding-left: 20px;
        padding-right: 20px;
    }

    .feature-art {
        min-height: 250px;
    }

    .hero {
        background: none;
        border-radius: 12px;
        overflow: hidden;
    }

    .hero-static,
    .hero-slider {
        position: relative;
        min-height: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .hero-static .hero-bg,
    .hero-slide img {
        position: static;
        min-height: 0 !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
        object-position: top center;
        animation: none !important;
        transform: none !important;
        display: block;
    }

    .facility-section {
        padding: 40px 0px;
    }

    .whatsapp-float,
    .joinchat,
    #whatsapp-widget,
    .joinchat__button,
    .whatsapp-button {
        bottom: 150px;
        z-index: 99999;
        position: fixed;
    }

    /* .animatedParent {
        overflow: hidden;
        max-width: 100vw;
    } */

    .mc-mb-25 {
        margin-bottom: 25px;
    }

    .mc-mb-40 {
        margin-bottom: 30px;
    }

    .contact-box {
        margin-bottom: 20px;
    }
}

/* Tablet Specific Adjustments */
@media (min-width: 768px) and (max-width: 1024px) {

    .feature-panel,
    .connect {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-static .hero-bg {
        min-height: 450px;
    }
}

.site-footer {
    padding: 64px 0 28px;
    color: #ffffff;
    background: var(--footer);
}

.footer-grid h2 {
    margin: 0 0 21px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.footer-grid ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    text-decoration: none;
}

.footer-grid a::before {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/Vector.png) no-repeat center/contain;
    display: inline-block;
}

.footer-grid a,
.footer-grid button {
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.footer-grid a:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.footer-grid button:hover {
    transform: translateY(-1px);
}

.footer-grid .wpcf7 .form {
    background: #f2f5e1;
    border-radius: 9px;
    height: 50px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-grid .wpcf7 .form p {
    margin: 0;
    width: 100%;
    display: flex;
}

.footer-grid .wpcf7 .form br {
    display: none !important;
}

.footer-grid .wpcf7 .form .wpcf7-form-control-wrap {
    flex: 1;
    height: 50px;
    display: block;
}

.footer-grid .wpcf7 input[type="email"] {
    background: transparent;
    border: none;
    height: 50px;
    padding: 0 10px;
    width: 100%;
    color: #333;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    display: block;
    border-radius: 9px;
}

.footer-grid .wpcf7 input[type="submit"] {
    background: #ffa832;
    color: #fff;
    border: none;
    height: 50px;
    padding: 0 50px 0 10px;
    font-size: 18px;
    border-radius: 0 9px 9px 0;
    cursor: pointer;
    transition: background 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' class='bi bi-send-fill' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083l6-15Zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471-.47 1.178Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    box-shadow: none;
    -webkit-appearance: none;
}

.footer-grid .wpcf7 input[type="submit"]:hover {
    background: #ff9d2d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' class='bi bi-send-fill' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083l6-15Zm-1.833 1.89L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.494-7.494 1.178-.471-.47 1.178Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    box-shadow: none;
}

.wpcf7-spinner {
    position: absolute;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 0;
    background-color: inherit;
    padding: 0;
}

.site-footer span.wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    font-size: 12px;
}

.site-footer .wpcf7-response-output {
    margin-top: 26px;
    position: absolute;
    font-size: 11px;
}

.footer-grid label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 400;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 300;
}

@media (max-width: 1190px) {
    .rmp-container .rmp-menu-title .rmp-menu-title-image {
        height: auto;
    }

    #rmp-menu-item-55 .rmp-menu-item-link,
    #rmp-menu-item-536 .rmp-menu-item-link {
        color: #5b95ac !important;
        font-weight: bold !important;
        font-size: 18px !important;
    }

    .site-header,
    .site-header.is-scrolled {
        padding: 12px 0 10px;
    }

    .header-cta {
        margin-right: 30px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .instagram-shot img {
        width: 100%;
        height: auto;
    }

    .feature-art {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .feedback>h2 {
        font-size: 30px;
    }

    .footer-grid .wpcf7 .form {
        height: auto;
        background: #78a7cd;
    }

    .footer-grid .wpcf7 .form p {
        flex-direction: column;
    }

    .footer-grid .wpcf7 input[type="email"] {
        background: #eff3dc;
    }

    .footer-grid .wpcf7 input[type="submit"] {
        width: auto;
        max-width: 146px;
        margin-top: 10px;
        border-radius: 5px;
        font-size: 15px;
    }
}

@media (max-width: 960px) {

    .hero-slider,
    .hero-slide img {
        min-height: 300px;
    }

    .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        max-width: 100%;
        background-color: #000;
        z-index: 10;
        padding: 24px;
        margin-bottom: 0;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .feedback-wrap {
        padding: 0;
    }

    .feedback-wrap>.arrow {
        display: none;
    }

    .review p {
        min-height: auto;
        font-size: 18px;
    }

    .hero-copy h1,
    .hero-copy p {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .intro h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {

    .hero-slider,
    .hero-slide img {
        min-height: 320px;
    }

    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-static {
        min-height: auto;
    }

    .intro h2,
    .feedback>h2 {
        font-size: 20px;
    }

    .section-top h2,
    .connect h2,
    .feature-copy h2,
    .benefits h2 {
        font-size: 20px;
    }

    .feature-copy img {
        margin-bottom: 25px;
    }

    .benefits h2 {
        margin-bottom: 25px;
    }

    .stay-info h3 {
        font-size: 18px;
    }

    .footer-grid form {
        /* Using Bootstrap responsive */
        height: auto;
        background: transparent;
        gap: 10px;
    }

    .footer-grid input,
    .footer-grid button {
        height: 46px;
        border-radius: 8px;
    }

    .footer-grid input {
        background: var(--panel);
    }

    .footer-grid a {
        font-size: 14px;
    }
}

.contact-box {
    padding: 42px 30px;
    text-align: center;
    border: 1px solid rgba(31, 32, 38, 0.07);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    height: 100%;
}

.contact-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 177, 43, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255, 177, 43, 0.08);
}

.contact-icon i {
    color: var(--gold);
    font-size: 30px;
    line-height: 1;
}

.contact-box h3 {
    margin: 0 0 14px;
    color: #1f2026;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-box p {
    margin: 0;
    color: #666971;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.connect-contact {
    display: grid;
    gap: 14px;
    margin: 26px 0 24px;
}

.connect-line {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.connect-line i {
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
}

.connect-line span {
    color: #1f2026;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    transition: color 0.2s ease;
}

.connect-line:hover span {
    color: var(--gold);
}

@media (max-width: 640px) {
    .connect-line span {
        font-size: 20px;
    }
}

.floating-book {
    position: fixed;
    bottom: 0;
    right: 90px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px 12px 0 0;
    background: var(--gold);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.floating-book::before,
.floating-book::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.floating-book:hover {
    transform: translateY(-5px);
    background: #ff9d2d;
    color: #ffffff;
}

@media (max-width: 768px) {
    .floating-book {
        font-size: 16px;
        padding: 12px 20px;
        right: 0;
        left: 0;
        border-radius: 0;
        justify-content: center;
    }
}

.facility-section {
    padding: 0px 0 80px 0;
    background: #ffffff;
}

.facility-heading {
    margin-bottom: 58px;
    text-align: center;
}

.facility-heading p {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.facility-heading h2 {
    margin: 0;
    color: #1f2026;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.facility-card {
    padding: 38px 28px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(31, 32, 38, 0.07);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 177, 43, 0.18);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.facility-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255, 177, 43, 0.08);
}

.facility-icon i {
    color: var(--gold);
    font-size: 32px;
    line-height: 1;
}

.facility-card h3 {
    margin: 0 0 14px;
    color: #1f2026;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.facility-card p {
    margin: 0;
    color: #666971;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {
    .facility-section {
        padding: 70px 0;
    }

    .facility-heading {
        margin-bottom: 42px;
    }

    .facility-heading h2 {
        font-size: 34px;
    }

    .facility-card {
        padding: 34px 24px;
    }

    .facility-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 20px;
    }

    .facility-icon i {
        font-size: 28px;
    }

    .facility-card h3 {
        font-size: 20px;
    }
}

/* =========================
   GALLERY SECTION
========================= */

/* Gallery Section Header Styles */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-section-header {
    margin-bottom: 25px;
    margin-top: 40px;
    text-align: left;
}

.gallery-section-header h2 {
    margin: 0;
    color: #1d1e23;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-section {
        margin-bottom: 35px;
    }

    .gallery-section-header {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .gallery-section-header h2 {
        font-size: 24px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(31, 32, 38, 0.07);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 177, 43, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 10px;
    background: rgba(31, 32, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 32px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.intro p.tagline {
    color: #6b6b6b;
    font-size: 16px;
    letter-spacing: 14px;
    line-height: 50px;
    padding-left: 14px;
}

/* Whatsapp button */

.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 15px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    /* Size of the Bootstrap Icon */
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 2px 8px 18px rgba(0, 0, 0, 0.25);
}

/* Pulse effect to grab attention */
.whatsapp-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .whatsapp-button {
        bottom: 56px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}

/* Mobile Responsiveness Refinements */
@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

    body {
        font-size: 14px;
    }

    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .animated {
        transform: none;
        left: 0;
        right: 0;
        max-width: 100%;
    }

    .header .container {
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
    }

    .sc-pb-70 {
        padding-bottom: 40px;
    }

    .sc-pt-70 {
        padding-top: 40px;
    }

    .header-logo {
        flex: 0 0 auto;
    }

    .header-logo img {
        max-width: 110px;
        height: auto;
    }

    .btn-book,
    .header-cta .btn-book {
        display: none;
    }

    .header-cta {
        display: flex;
        align-items: center;
        margin-right: 50px;
    }

    .btn-phone {
        margin-left: auto;
    }

    .menu-trigger {
        flex: 0 0 auto;
        margin-left: 0;
    }

    h1,
    .hero-copy h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    h2,
    .intro h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    h3,
    .facility-card h3,
    .contact-box h3 {
        font-size: 18px;
    }

    .intro p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .connect-copy p,
    .review p {
        font-size: 14px;
    }

    .connect-line span {
        font-size: 16px;
    }

    .feature-panel,
    .connect {
        padding-left: 20px;
        padding-right: 20px;
    }

    .feature-art {
        min-height: 250px;
        margin: 25px 0;
    }

    .facility-section {
        padding: 40px 0px;
    }

    .intro p.tagline {
        font-size: 14px;
        letter-spacing: 8px;
        line-height: 2.5;
    }

    .socials {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .whatsapp-float,
    .joinchat,
    #whatsapp-widget,
    .joinchat__button,
    .whatsapp-button {
        bottom: 150px;
        z-index: 99999;
        position: fixed;
    }

    .whatsapp-button {
        bottom: 60px;
    }

    .site-footer {
        padding: 50px 0 74px;
    }

    .footer-bottom {
        margin-top: 31px;
        padding-top: 24px;
    }

    .footer-grid ul {
        margin-bottom: 25px;
    }
}


.property-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* using feature-panel inspired block style */

.sidebar-card {
    padding: 28px 26px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid rgba(120, 167, 205, 0.1);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.sidebar-card h3 i {
    color: #78a7cd;
    font-size: 22px;
}

.sidebar-card h3 span {
    color: #7d7d7d;
    font-size: 12px;
    font-weight: 500;
}

.sidebar-list,
.attraction-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-list li,
.attraction-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

.sidebar-list li i,
.attraction-list li i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78a7cd;
    font-size: 15px;
    flex-shrink: 0;
}

.service-card p {
    margin: 0;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

/* =========================================
   RIGHT SIDE CONTENT
========================================= */

.property-content {
    padding: 70px 95px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.property-inner h2 {
    margin: 0 0 28px;
    color: #4d4d4d;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
}

.property-inner p {
    margin: 0 0 22px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
}

.property-inner strong {
    color: #4d4d4d;
    font-weight: 700;
}

/* =========================================
   SIGNATURE
========================================= */

.signature-wrap {
    margin-top: 55px;
    text-align: center;
}

.signature-image {
    width: 170px;
    margin: 0 auto 16px;
}

.signature-wrap h4 {
    margin: 0 0 6px;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.signature-wrap span {
    color: #7b7b7b;
    font-size: 12px;
    font-weight: 500;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: relative;
        top: 0;
    }

    .property-content {
        padding: 50px 40px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .property-content {
        padding: 42px 24px;
    }

    .property-inner h2 {
        font-size: 26px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-copy p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .property-inner h2 {
        font-size: 24px;
    }

    .sidebar-card h3 {
        font-size: 18px;
    }
}

/* =========================================
   EXPERIENCE PANEL
========================================= */

.experience-panel {
    background: #eff3dc;
}

.experience-panel * {
    box-sizing: border-box;
}

.experience-panel .page-shell {
    padding-bottom: 0;
}

/* =========================================
   TOP SECTION
========================================= */

.experience-top {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 42px;
}

.experience-left h2 {
    margin: 0;
    color: #4d4d4d;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.experience-right p {
    margin: 0;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 1.9;
    font-weight: 400;
}

.experience-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 55px;
}

/* =========================================
   GRID
========================================= */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}

/* =========================================
   CARD
========================================= */

.experience-card {
    background: #fbffe6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* COLUMN 2 & 4 */
.reverse-card .experience-content {
    order: 1;
}

.reverse-card .experience-image-wrap {
    order: 2;
}

/* =========================================
   IMAGE AREA
========================================= */

.experience-image-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.experience-image-wrap a {
    display: block;
    width: 100%;
    position: relative;
}

.experience-image-wrap a::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    pointer-events: none;
    z-index: 5;
}

.experience-image-wrap .slide-caption {
    position: absolute;
    bottom: 48px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.experience-image-wrap .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.experience-image-wrap .swiper-wrapper {
    display: flex !important;
    width: 100%;
    height: 100%;
}

.experience-image-wrap .swiper-slide {
    width: 100% !important;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.experience-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* =========================================
   CONTENT
========================================= */

.experience-content {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 30px 26px 34px;
    text-align: center;
}

.experience-content-inner {
    width: 100%;
}

.experience-content h3 {
    margin: 0 0 18px;
    color: #4d4d4d;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.experience-content p {
    margin: 0 0 26px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
}

.experience-content ul {
    margin: 0 0 26px;
    padding-left: 20px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
    text-align: left;
}

.experience-content li {
    margin: 0 0 8px;
}

.experience-content li:last-child {
    margin-bottom: 0;
}

/* =========================================
   BUTTON
========================================= */

.experience-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    height: 44px;
    margin: 0 auto;
    border: 1px solid #ffb12b;
    border-radius: 50px;
    background: transparent;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    background: #ffb12b;
    color: #ffffff;
}

/* =========================================
   PAGINATION
========================================= */

.experience-panel .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px !important;
    z-index: 5;
}

/* Handled by global Swiper bullets */

/* =========================================
   FOOTER GAP FIX
========================================= */

.site-footer {
    margin-top: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-panel {
        padding: 70px 0 0;
    }

    .experience-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .experience-left h2 {
        font-size: 28px;
    }

    .experience-right p {
        font-size: 16px;
        line-height: 1.8;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-image-wrap img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .experience-content {
        padding: 26px 20px 30px;
    }

    .experience-content h3 {
        font-size: 20px;
    }

    .experience-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .experience-content ul {
        font-size: 13px;
        line-height: 1.9;
    }
}

/* =========================================
   DINE PAGE STYLES
========================================= */

.dine-subtitle {
    color: #8c8c8c;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.dine-title {
    font-size: 38px;
    color: #1f2026;
    font-weight: 300;
    margin-bottom: 25px;
}

.dine-restaurant-title {
    font-family: var(--font);
    font-size: 32px;
    font-weight: 500;
    color: #0e302b;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .dine-restaurant-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
}

.dine-desc {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
    text-align: justify;
}

.dine-desc p {
    margin-bottom: 15px;
}

.dine-actions .btn-dine-solid {
    background: #d98a3b;
    color: #fff;
    border: 2px solid #d98a3b;
    border-radius: 8px;
    padding: 0 14px;
    height: 42px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    margin-right: 15px;
    margin-bottom: 10px;
}

.dine-actions .btn-dine-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 138, 59, 0.3);
    background: #c77b30;
    border-color: #c77b30;
    color: #fff;
}

.dine-actions .btn-dine-outline {
    background: transparent;
    color: #d98a3b;
    border: 2px solid #d98a3b;
    border-radius: 8px;
    padding: 0 14px;
    height: 42px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    margin-bottom: 10px;
}

.dine-actions .btn-dine-outline i {
    margin-right: 8px;
}

.dine-actions .btn-dine-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 138, 59, 0.3);
    background: #d98a3b;
    color: #fff;
    border-color: #d98a3b;
}

.dine-actions {
    margin-top: 30px;
}

.dine-page-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dine-page-slider img.dine-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .dine-page-slider {
        margin-bottom: 30px;
    }

    .dine-content {
        padding-top: 30px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Reset row negative margins on mobile to align columns symmetrically and prevent overflow */
    .dine-list .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =========================================
   ENQUIRE MODAL POPUP (FANCYBOX OVERRIDE)
========================================= */
.enquire-popup-modal {
    max-width: 800px !important;
    width: 95% !important;
    border-radius: 12px !important;
    padding: 40px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

/* Fancybox Content Width support */
.fancybox__content {
    max-width: 1020px !important;
}

.enquire-modal-header h2 {
    font-size: 28px;
    font-weight: 300;
    color: #1f2026;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.enquire-modal-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #d98a3b;
}

.enquire-modal-header p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Beautiful CF7 input styling within the modal */
.wpcf7-form .form-control,
.enquire-popup-modal .wpcf7-text,
.enquire-popup-modal .wpcf7-select {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 0 16px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    display: block;
}

.enquire-popup-modal select.wpcf7-select,
.wpcf7-form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d98a3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 14px !important;
    padding-right: 40px !important;
}

.enquire-popup-modal .wpcf7-textarea {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    display: block;
}

.wpcf7-form .form-control:focus,
.enquire-popup-modal .wpcf7-text:focus,
.enquire-popup-modal .wpcf7-textarea:focus,
.enquire-popup-modal .wpcf7-select:focus {
    border-color: #d98a3b;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(217, 138, 59, 0.15);
}

.wpcf7-form label,
.enquire-popup-modal label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    color: #1f2026;
    text-transform: none;
    letter-spacing: normal;
}

.wpcf7-form .btn,
.enquire-popup-modal .wpcf7-submit {
    background: #d98a3b;
    color: #fff;
    border: 2px solid #d98a3b;
    border-radius: 8px;
    padding: 0 35px;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    width: auto;
    min-width: 160px;
}

.wpcf7-form .btn:hover,
.enquire-popup-modal .wpcf7-submit:hover {
    background: #c77b30;
    border-color: #c77b30;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 138, 59, 0.3);
    color: #fff;
}

.enquire-popup-modal .wpcf7-form-control-wrap {
    display: block;
    margin-top: 5px;
}

.wpcf7-form {
    text-align: left !important;
}

.form-group p,
.wpcf7-form p {
    margin-bottom: 0;
    text-align: left !important;
}

.form-group br,
.wpcf7-form br {
    display: none;
}

/* Adjust close button for Fancybox modal */
.fancybox-close-small {
    color: #999 !important;
}

/* =========================================
   PREMIUM SWIPER PAGINATION BRAND BULLETS
========================================= */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    width: 24px;
    background: var(--gold);
    opacity: 1;
    border-radius: 4px;
    transform: none;
}

/* =========================================
   FACILITY LEFT SLIDER STYLES
   ========================================= */
.facility-left-container {
    position: relative;
    padding-bottom: 45px;
    /* Space for pagination dots */
    width: 100%;
}

.facility-left-slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.facility-slider-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.facility-slider-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.facility-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.facility-slider-card:hover .facility-slider-img {
    transform: scale(1.06);
}

.facility-slider-info-bar {
    display: flex;
    align-items: center;
    background-color: var(--gold);
    /* Exact theme gold variable */
    color: #ffffff;
    height: 90px;
    position: relative;
    width: 100%;
}

.facility-slider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    color: #ffffff;
    /* Crisp premium white line-art */
    font-size: 28px;
    flex-shrink: 0;
}

.facility-slider-icon i {
    line-height: 1;
}

.facility-slider-divider {
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    /* Crisp semi-transparent white divider */
    display: block;
    flex-shrink: 0;
}

.facility-slider-title {
    flex: 1;
    padding: 0 24px;
    margin: 0;
    font-family: var(--font);
    /* Precise theme font variable (Inter) */
    font-size: 22px;
    font-weight: 700;
    /* Bold weight matching the rest of the site */
    color: #ffffff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.facility-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    /* Dynamically slightly darker than the gold bar */
    color: #ffffff !important;
    font-size: 20px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.facility-slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.28);
}

.facility-slider-arrow i {
    line-height: 1;
    transition: transform 0.3s ease;
}

.facility-slider-arrow:hover i {
    transform: translateX(4px);
}

.facility-slider-pagination {
    bottom: 105px !important;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .facility-left-container {
        margin-bottom: 40px;
    }
}

.booking-benefits-panel {
    background-color: #ECF0D8;
    border-radius: 20px;
    border: 1px solid rgba(31, 32, 38, 0.04);
    padding: 40px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 0;
}

.benefits-header .tagline {
    margin: 0;
    color: var(--blue);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.benefits-header h2 {
    margin: 0 0 16px;
    color: #1f2026;
    font-size: 24px;
    line-height: 1.0;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-three-icon {
    font-size: 32px;
    color: #d3ac31;
    margin-left: 12px;
}

.benefits-header .divider {
    display: block;
    width: 60px;
    height: 3px;
    margin: 0 auto;
    background: #d3ac31;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 30px auto 0;
}

.benefit-card {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 15px;
    transition: transform 0.3s ease;
    position: relative;
}

.benefit-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(31, 32, 38, 0.15);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(31, 40, 50, 0.04);
    border: 1px solid rgba(31, 40, 50, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #354a5f;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.benefit-card .benefit-text {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    color: #1f2026;
    line-height: 1.5;
    padding: 0 10px;
}

/* Responsive adjustments for benefits panel */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .booking-benefits-panel {
        padding: 45px 20px;
    }

    .benefits-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 5px;
    }
}

/* Rooms Tab Showcase Section Styles */
.rooms-tabs-container {
    margin-bottom: 25px;
}

.rooms-tabs {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.room-tab {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: #555555;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.0);
    background: transparent;
}

.room-tab.active {
    background: var(--gold);
    color: #ffffff;
    border-color: transparent;
    box-shadow: none;
}

.rooms-showcase-panel {
    background-color: #f7f7f7;
    padding: 60px 0;
    width: 100%;
}

.rooms-showcase-panel12 {
    padding: 0;
}

.room-showcase-content {
    display: none;
}

.room-showcase-content.active {
    display: block;
}

.showcase-flex {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.showcase-slider-col {
    width: 55%;
    position: relative;
}

.room-main-slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.room-main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-thumbs-slider {
    width: auto;
    height: 70px;
    margin: 12px 16px 16px 16px;
    overflow: hidden;
}

.room-thumbs-slider .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--gold);
}

.room-thumbs-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-info-col {
    width: 45%;
    background-color: #ffffff;
    color: #333333;
    padding: 40px 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card-arrow {
    position: absolute;
    left: -12px;
    top: 45px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #ffffff;
    z-index: 5;
}

.info-card-content h3 {
    font-family: var(--font);
    font-size: 32px;
    font-weight: 500;
    color: #0e302b;
    margin-bottom: 18px;
}

.info-card-content p {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 15px;
	text-align:justify;
}

.info-card-content h4 {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
}

.info-card-content ul {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.info-card-content ul li {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.info-card-content ul li::before {
    content: "\f272";
    font-family: "bootstrap-icons" !important;
    color: var(--gold);
    font-size: 14px;
    margin-right: 8px;
    display: inline-block;
    flex-shrink: 0;
    line-height: 1.5;
}

.btn-book-now {
    display: inline-block;
    background-color: var(--gold);
    color: #ffffff !important;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(217, 138, 59, 0.2);
    align-self: flex-start;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-book-now:hover {
    background-color: #e28f35;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(217, 138, 59, 0.3);
    text-decoration: none !important;
}

/* Premium Desktop Stretching & Scrollbar for Rooms Showcase */
@media (min-width: 992px) {
    .showcase-flex {
        align-items: stretch;
    }

    .showcase-slider-col {
        height: 498px;
    }

    .showcase-info-col {
        height: 498px;
        padding: 40px 45px;
        overflow: hidden;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .info-card-content {
        padding: 0 15px 0 0;
        flex: 1;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .btn-book-now {
        margin-top: 20px;
        flex-shrink: 0;
    }

    /* Elegant Custom Scrollbar */
    .info-card-content::-webkit-scrollbar {
        width: 5px;
    }

    .info-card-content::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.02);
    }

    .info-card-content::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 4px;
    }
}

/* Responsive adjustments for Rooms Tab Showcase */
@media (max-width: 991px) {
    .showcase-flex {
        flex-direction: column;
    }

    .showcase-slider-col {
        width: 100%;
    }

    .room-main-slider {
        height: 300px;
    }

    .room-thumbs-slider {
        height: 60px;
        margin: 10px 15px 15px 15px;
    }

    .showcase-info-col {
        width: 100%;
        padding: 35px 25px;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .info-card-arrow {
        left: 35px;
        top: -12px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #ffffff;
        border-top: none;
    }
}

@media (max-width: 768px) {
    .rooms-tabs {
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
    }

    .room-tab {
        flex: 1;
        text-align: center;
        padding: 8px 15px;
        font-size: 12px;
    }

    .info-card-content ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

button.rmp_menu_trigger {
    z-index: 9999 !important;
}

/* Gallery Section Header Styles */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-section-header {
    margin-bottom: 25px;
    margin-top: 40px;
    text-align: left;
}

.gallery-section-header h2 {
    margin: 0;
    color: #1d1e23;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-section {
        margin-bottom: 35px;
    }

    .gallery-section-header {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .gallery-section-header h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   PAGE CONTENT AREA — default-content 
   ========================================================================== */

.page-content-section.default-content {
    background: #ffffff;
    border: 1px solid rgba(31, 32, 38, 0.07);
    border-radius: 18px;
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.03);
    padding: 50px 60px;
    margin-top: 50px;
    margin-bottom: 50px;
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.page-content-section.default-content:hover {
    border-color: rgba(255, 177, 43, 0.15);
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.07),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ---- Base typography ---- */
.page-content-section.default-content .entry-content {
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

/* ---- Headings ---- */
.page-content-section.default-content .entry-content h1,
.page-content-section.default-content .entry-content h2,
.page-content-section.default-content .entry-content h3,
.page-content-section.default-content .entry-content h4,
.page-content-section.default-content .entry-content h5,
.page-content-section.default-content .entry-content h6 {
    color: #1f2026;
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.2;
}

.page-content-section.default-content .entry-content h1 {
    font-size: 36px;
}

.page-content-section.default-content .entry-content h2 {
    font-size: 28px;
}

.page-content-section.default-content .entry-content h3 {
    font-size: 22px;
}

.page-content-section.default-content .entry-content h4 {
    font-size: 19px;
}

.page-content-section.default-content .entry-content h5 {
    font-size: 17px;
}

.page-content-section.default-content .entry-content h6 {
    font-size: 15px;
}

/* Gold underline on h2 */
.page-content-section.default-content .entry-content h2 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.page-content-section.default-content .entry-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
}

/* ---- Paragraph ---- */
.page-content-section.default-content .entry-content p {
    margin: 0 0 1.3em;
    color: #3a3b42;
    font-size: 16px;
    line-height: 1.75;
}

/* ---- Links ---- */
.page-content-section.default-content .entry-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.page-content-section.default-content .entry-content a:hover {
    color: #d9910d;
}

/* ---- Lists ---- */
.page-content-section.default-content .entry-content ul,
.page-content-section.default-content .entry-content ol {
    margin: 0 0 1.3em;
}

.page-content-section.default-content .entry-content ul {
    list-style: none;
    padding-left: 0;
}

.page-content-section.default-content .entry-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.5em;
    color: #3a3b42;
    font-size: 16px;
    line-height: 1.7;
}

.page-content-section.default-content .entry-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.page-content-section.default-content .entry-content ol {
    list-style: decimal;
    padding-left: 1.6em;
}

.page-content-section.default-content .entry-content ol li {
    margin-bottom: 0.5em;
    color: #3a3b42;
    font-size: 16px;
    line-height: 1.7;
    padding-left: 6px;
}

.page-content-section.default-content .entry-content ol li::marker {
    color: var(--gold);
    font-weight: 700;
}

/* Nested lists */
.page-content-section.default-content .entry-content ul ul,
.page-content-section.default-content .entry-content ol ol,
.page-content-section.default-content .entry-content ul ol,
.page-content-section.default-content .entry-content ol ul {
    margin-top: 0.4em;
    margin-bottom: 0;
}

/* ---- Blockquote ---- */
.page-content-section.default-content .entry-content blockquote {
    margin: 1.8em 0;
    padding: 20px 28px;
    border-left: 4px solid var(--gold);
    background: var(--panel);
    border-radius: 0 12px 12px 0;
    color: #3a3b42;
    font-style: italic;
    font-size: 17px;
    line-height: 1.65;
}

.page-content-section.default-content .entry-content blockquote p {
    margin: 0;
}

/* ---- HR ---- */
.page-content-section.default-content .entry-content hr {
    border: none;
    border-top: 2px solid rgba(31, 32, 38, 0.08);
    margin: 2em 0;
}

/* ---- Strong / Em ---- */
.page-content-section.default-content .entry-content strong,
.page-content-section.default-content .entry-content b {
    font-weight: 700;
    color: #1f2026;
}

.page-content-section.default-content .entry-content em,
.page-content-section.default-content .entry-content i {
    font-style: italic;
}

/* ---- Code / Pre ---- */
.page-content-section.default-content .entry-content code {
    background: rgba(239, 243, 220, 0.8);
    border: 1px solid rgba(31, 32, 38, 0.08);
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 14px;
    font-family: "Courier New", Courier, monospace;
    color: #1f2026;
}

.page-content-section.default-content .entry-content pre {
    background: #f4f6ea;
    border: 1px solid rgba(31, 32, 38, 0.08);
    border-radius: 10px;
    padding: 20px 24px;
    overflow-x: auto;
    margin: 1.5em 0;
    font-size: 14px;
    line-height: 1.65;
}

.page-content-section.default-content .entry-content pre code {
    background: none;
    border: none;
    padding: 0;
}

/* ---- Definition List ---- */
.page-content-section.default-content .entry-content dl {
    margin: 0 0 1.3em;
}

.page-content-section.default-content .entry-content dt {
    font-weight: 700;
    color: #1f2026;
    margin-top: 0.8em;
}

.page-content-section.default-content .entry-content dd {
    padding-left: 1.4em;
    color: #3a3b42;
    margin-bottom: 0.4em;
}

/* ---- Figure / Caption ---- */
.page-content-section.default-content .entry-content figure {
    margin: 1.5em 0;
}

.page-content-section.default-content .entry-content figcaption {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* ---- Images ---- */
.page-content-section.default-content .entry-content img {
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    margin: 1.2em 0;
    max-width: 100%;
    height: auto;
}

/* ---- Table ---- */
.page-content-section.default-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 15px;
}

.page-content-section.default-content .entry-content th {
    background: var(--panel);
    color: #1f2026;
    font-weight: 700;
    padding: 12px 16px;
    border: 1px solid rgba(31, 32, 38, 0.1);
    text-align: left;
}

.page-content-section.default-content .entry-content td {
    padding: 11px 16px;
    border: 1px solid rgba(31, 32, 38, 0.07);
    color: #3a3b42;
    vertical-align: top;
}

.page-content-section.default-content .entry-content tr:nth-child(even) td {
    background: rgba(239, 243, 220, 0.4);
}

/* ---- Misc inline ---- */
.page-content-section.default-content .entry-content sup,
.page-content-section.default-content .entry-content sub {
    font-size: 11px;
}

.page-content-section.default-content .entry-content kbd {
    background: #1f2026;
    color: #fff;
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 13px;
    font-family: "Courier New", Courier, monospace;
}

.page-content-section.default-content .entry-content mark {
    background: rgba(255, 177, 43, 0.25);
    color: inherit;
    border-radius: 3px;
    padding: 0 3px;
}

.page-content-section.default-content .entry-content abbr[title] {
    border-bottom: 1px dotted var(--gold);
    cursor: help;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-content-section.default-content {
        padding: 36px 28px;
        border-radius: 14px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .page-content-section.default-content .entry-content h1 {
        font-size: 26px;
    }

    .page-content-section.default-content .entry-content h2 {
        font-size: 22px;
    }

    .page-content-section.default-content .entry-content h3 {
        font-size: 19px;
    }

    .page-content-section.default-content .entry-content h4 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .page-content-section.default-content {
        padding: 24px 16px;
        border-radius: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .page-content-section.default-content .entry-content h1 {
        font-size: 22px;
    }

    .page-content-section.default-content .entry-content h2 {
        font-size: 19px;
    }

    .page-content-section.default-content .entry-content h3 {
        font-size: 17px;
    }

    .page-content-section.default-content .entry-content h4 {
        font-size: 16px;
    }

    .page-content-section.default-content .entry-content blockquote {
        padding: 16px 20px;
    }

    .page-content-section.default-content .entry-content ul li::before {
        top: 9px;
    }
}

.instagram-shot {
    position: relative;
}

@media (min-width: 1190px) {
    #sb_instagram #sbi_load .sbi_follow_btn {
        display: block;
        position: absolute;
        right: 0;
        top: 32px;
    }
}

#sb_instagram .sbi_follow_btn a {
    background: #ffb12b !important;
}

#sb_instagram .sbi_follow_btn a:hover {
    background: #5b95ac !important;
}


