: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;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: var(--font);
    letter-spacing: 0;
    padding-top: 84px;
    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;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 12px;
    margin: 0 18px 8px;
    padding-left: 0;
    padding-right: 0;
    pointer-events: none;
    cursor: default;
}

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

/* Responsive Styles */
@media (max-width: 768px) {

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

    body {
        padding-top: 64px;
    }

    .header-right {
        gap: 12px;
    }

    .hero-copy {
        left: 24px;
    }

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

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

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

    .section-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .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: static;
        min-height: auto;
        border-radius: 0;
        overflow: visible;
    }

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

    .hero-copy {
        position: static;
        left: auto;
        bottom: auto;
        background: #ffffff;
        padding: 20px;
        text-align: center;
    }

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

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

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

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

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

    .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: 18px;
    }

    .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-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: 70px;
    bottom: 50px;
    z-index: 10;
    width: 100%;
}

.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.4;
    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;
    }

    .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-static .hero-bg {
        min-height: 350px;
    }

    .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;
}

.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-357 .rmp-menu-item-link {
        color: #5b95ac;
        font-weight: bold;
        font-size: 18px;
    }

    .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: 18px;
    }

    .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;
        bottom: auto;
        background-color: #000;
        z-index: 10;
        padding: 28px 24px;
    }

    .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;
        opacity: 1;
        transition: none;
    }

    .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: 18px;
    }

    .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-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;
    }
}

/* ==========================================================================
   LOCATIONS REPEATER PANEL (3 COLUMNS)
   ========================================================================== */
.locations-section {
    padding-bottom: 30px;
}

.locations-grid {
    margin-left: -12.5px;
    margin-right: -12.5px;
}

.locations-grid>[class*="col-"] {
    padding-left: 12.5px;
    padding-right: 12.5px;
}

.location-card {
    background: #ffffff;
    border: 1px solid rgba(31, 32, 38, 0.07);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 177, 43, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.location-card-content {
    padding: 30px;
    flex-grow: 1;
}

.location-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2026;
    margin: 0 0 14px;
    line-height: 1.25;
}

.location-address {
    font-size: 15px;
    line-height: 1.6;
    color: #666971;
    margin: 0 0 20px;
}

.location-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-contact-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, transform 0.2s ease;
    width: fit-content;
}

.location-contact-link i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.location-contact-link:hover {
    color: #1f2026;
    transform: translateX(2px);
}

.location-map {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-top: 1px solid rgba(31, 32, 38, 0.05);
    background: #f5f5f7;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

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

    .location-title {
        font-size: 20px;
    }

    .location-map {
        height: 240px;
    }
}

/* 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;
    }
}

/* 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;
    }

    .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;
    }

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

    .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;
    }
}

/* ==========================================================================
   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;
}