/* -------------------- Root variables -------------------- */
:root {
    --ff-base: "Inter", sans-serif;
    --ff-heading: "Playfair Display", "Georgia", serif;
    --ff-base-size: 16px;
    --ff-base-line-height: 1.6;
    --ff-letter-spacing: 0.3px;

    --clr-base: #C08A3E;
    --nav-height: 80px;

    --clr-black: #000000;
    --clr-s: #000000;
    --clr-t: #fff;

    --clr-gold: #C08A3E;
    --clr-gold-dark: #a97423;
    --clr-cream: #F2ECE1;
    --clr-cream-dark: #EAE2D2;
    --clr-dark: #14120F;
    --clr-ink: #1C1C1C;
}

::-webkit-scrollbar {
    z-index: 999;
    position: absolute;
    background: transparent;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--clr-gold);
    border-radius: 50px;
}

/* -------------------- Document base -------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-size: var(--ff-base-size);
    line-height: var(--ff-base-line-height);
    letter-spacing: var(--ff-letter-spacing);
    background-color: var(--clr-cream);
    margin: 0;
    padding: 0;
}

html.pg-loaded body {
    font-family: var(--ff-base);
}

:target {
    scroll-margin-block: 5ex;
}

img {
    max-width: 100%;
    height: auto;
}

.form-control,
.form-select {
    font-size: inherit;
}

.navbar,
nav {
    background-color: #fff;
}

/* Pre-load state (before glide slider initializes) */
html:not(.pg-loaded) #mainSlider {
    display: block;
    width: 100%;
    aspect-ratio: 768/439;
    overflow: hidden;
}

/* -------------------- Site loader -------------------- */
.site--loader-wrapper {
    display: none;
    top: -150vh;
    top: -150dvh;
}

.site--loader-wrapper.active {
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #fff;
    color: var(--clr-black);
    justify-content: center;
    align-items: center;
    top: unset;
    position: fixed;
    z-index: 9999;
}

body:has(.site--loader-wrapper.active) {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.site--loader-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

#wifi-loader {
    --background: var(--clr-gold);
    --front-color: var(--clr-black);
    --back-color: var(--clr-cream-dark);
    --text-color: var(--clr-cream-dark);
    width: 64px;
    height: 64px;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wifi-loader svg {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wifi-loader svg circle {
    position: absolute;
    fill: none;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-100deg);
    transform-origin: center;
}

#wifi-loader svg circle.back {
    stroke: var(--back-color);
}

#wifi-loader svg circle.front {
    stroke: var(--front-color);
}

#wifi-loader svg.circle-outer {
    height: 86px;
    width: 86px;
}

#wifi-loader svg.circle-outer circle {
    stroke-dasharray: 62.75 188.25;
}

#wifi-loader svg.circle-outer circle.back {
    animation: circle-outer135 1.8s ease infinite 0.3s;
}

#wifi-loader svg.circle-outer circle.front {
    animation: circle-outer135 1.8s ease infinite 0.15s;
}

#wifi-loader svg.circle-middle {
    height: 60px;
    width: 60px;
}

#wifi-loader svg.circle-middle circle {
    stroke-dasharray: 42.5 127.5;
}

#wifi-loader svg.circle-middle circle.back {
    animation: circle-middle6123 1.8s ease infinite 0.25s;
}

#wifi-loader svg.circle-middle circle.front {
    animation: circle-middle6123 1.8s ease infinite 0.1s;
}

#wifi-loader svg.circle-inner {
    height: 34px;
    width: 34px;
}

#wifi-loader svg.circle-inner circle {
    stroke-dasharray: 22 66;
}

#wifi-loader svg.circle-inner circle.back {
    animation: circle-inner162 1.8s ease infinite 0.2s;
}

#wifi-loader svg.circle-inner circle.front {
    animation: circle-inner162 1.8s ease infinite 0.05s;
}

#wifi-loader .text {
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .2px;
    font-family: sans-serif;
}

#wifi-loader .text::before,
#wifi-loader .text::after {
    content: attr(data-text);
}

#wifi-loader .text::before {
    color: var(--text-color);
}

#wifi-loader .text::after {
    color: var(--front-color);
    animation: text-animation76 3.6s ease infinite;
    position: absolute;
    left: 0;
}

.ani-bounce {
    animation: bounce 0.6s infinite;
    transition: transform 0.2s;
}

.grecaptcha-badge {
    z-index: 2;
}

/* -------------------- Keyframes -------------------- */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes circle-outer135 {
    0% {
        stroke-dashoffset: 25;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 301;
    }

    80%,
    100% {
        stroke-dashoffset: 276;
    }
}

@keyframes circle-middle6123 {
    0% {
        stroke-dashoffset: 17;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 204;
    }

    80%,
    100% {
        stroke-dashoffset: 187;
    }
}

@keyframes circle-inner162 {
    0% {
        stroke-dashoffset: 9;
    }

    25% {
        stroke-dashoffset: 0;
    }

    65% {
        stroke-dashoffset: 106;
    }

    80%,
    100% {
        stroke-dashoffset: 97;
    }
}

@keyframes text-animation76 {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    50% {
        clip-path: inset(0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes popout {

    25%,
    75% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    55% {
        transform: scale(1.15);
    }
}

@keyframes Gradient {

    0%,
    100% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* -------------------- Bootstrap-lite grid helpers -------------------- */
.container,
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col,
.col-12,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
}

/* -------------------- Base layout -------------------- */
header {
    grid-area: header;
}

main {
    grid-area: main;
}

/* -------------------- Menu / nav -------------------- */
nav {
    grid-area: nav;
    height: var(--nav-height);
    overflow: hidden;
    transition: all 300ms;
    z-index: 1050;
}

nav:has(.navbar-collapse.show) {
    height: auto;
}

.main-navbar .navbar-nav {
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px;
}

.main-navbar .logo {
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.main-navbar .nav-item .cp-logo {
    max-width: 150px;
    height: 50px;
}

.main-navbar .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 20px;
    transition: all 300ms;
    color: #000000;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
    color: var(--clr-black);
    font-weight: 700;
    border-bottom: 3px solid var(--clr-gold);
}

/* -------------------- Banner -------------------- */
.banner {
    grid-area: banner;
    position: relative;
}

.banner {
    display: block;
    width: 100%;
    aspect-ratio: 1400/800;
}

.banner .glide__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1400/800;
}

#mainSlider {
    position: relative;
}

.card-d-custom {
    width: 100%;
    margin: 0 auto 15px;
    text-align: left;
    padding: 5px;
}

.card-d {
    background-color: var(--clr-cream-dark);
    margin-bottom: 8px;
    margin-top: 4px;
    padding: 10px;
}

/* -------------------- Main sections -------------------- */
main section,
footer {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    overflow-x: hidden;
}

footer p {
    text-align: justify;
}

main section p:last-child {
    margin-bottom: 0;
}

main section.light {
    background-color: var(--clr-cream);
}

main section.primary {
    background-color: var(--clr-dark);
    color: var(--clr-t);
}

main section.primary .section-heading {
    color: var(--clr-t);
}

main section.primary .section-heading::before {
    background-color: var(--clr-gold);
}

main section.primary .bd-img::before {
    display: none;
}

.section-heading {
    position: relative;
    display: inline-block;
    font-family: var(--ff-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-ink);
    margin-bottom: 20px;
}

.section-heading::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    background-color: var(--clr-gold);
}

/* -------------------- Buttons / CTA -------------------- */
.btn-cta {
    display: inline-block;
    background-color: var(--clr-black);
    background-image: linear-gradient(to left, var(--clr-s), var(--clr-black), var(--clr-s));
    background-size: 400% 400%;
    color: var(--clr-t);
    font-size: 18px;
    border-radius: 30px;
    padding: 4px 15px;
    box-shadow: none;
    border: 1px solid var(--clr-black);
    cursor: pointer;
    text-decoration: none;
    transition: all 250ms;
    animation: Gradient 3s ease infinite;
}

.btn-cta:hover,
.btn-cta:focus {
    background-image: unset;
    background-color: var(--clr-gold-dark);
    border-color: var(--clr-gold-dark);
}

.btn.disabled,
.btn:disabled,
.btn {
    opacity: 1 !important;
}

#pricing .btn-cta,
.info-box .status,
.info-box .mb-box ul {
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    line-height: 100%;
    padding: 6px 20px;
}

.info-box .status.offerAnimate,
.info-box .mb-box ul.offerAnimate {
    animation: Gradient 3s ease infinite, popout 2s ease forwards infinite;
}

/* -------------------- Decorative image block -------------------- */
.bd-img {
    position: relative;
    width: 95%;
    height: 180px;
    border-radius: 0 50px 0 50px;
    isolation: isolate;
}

.bd-img::before {
    content: "";
    position: absolute;
    width: 95%;
    height: 90%;
    top: 15%;
    right: -3%;
    border: 2px solid var(--clr-base);
    border-radius: inherit;
    z-index: -1;
}

.bd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 50px 0 50px;
}

.bd-img.blur {
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.bd-img.blur img {
    filter: blur(2px);
}

.bd-img .cta-text {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-weight: 400;
    padding: 10px;
    z-index: 2;
}

/* -------------------- Tabs / accordion -------------------- */
.pg-tabs .nav-pills {
    gap: 5px;
}

.pg-tabs .nav-item .nav-link {
    border-radius: 10px 10px 0 0;
    padding: 4px 12px;
    letter-spacing: 1.1px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    color: var(--clr-s);
    background-image: unset;
    background-color: transparent;
    font-weight: 700;
}

.pg-tabs .nav-item .nav-link.active {
    color: var(--clr-t);
    background-image: linear-gradient(to left, var(--clr-s), var(--clr-black), var(--clr-s));
    background-color: var(--clr-black);
    font-weight: 500;
}

.pg-tabs .tab-content {
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0 0 10px 10px;
    padding: 15px;
}

.pg-tabs .tab-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

.pg-tabs .tab-content ul li i {
    color: var(--clr-black);
}

.pg-tabs .tab-content .glide ul {
    display: flex;
    grid-template-columns: unset;
    grid-gap: unset;
}

.pg-tabs .tab-content .glide .glide__slide {
    padding: 30px 15px;
}

.oo-tabs.pg-tabs .tab-content {
    border: unset;
}

.oo-tabs.pg-tabs .nav-item .nav-link {
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.accordion-button {
    color: var(--clr-black);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--clr-gold) !important;
    color: var(--clr-t);
    letter-spacing: 1.1px;
    font-weight: 500;
    border: none !important;
    border-bottom: none;
}

.accordion-button:not(.collapsed) {
    color: var(--clr-cream-dark) !important;
}

.accordion-body {
    padding-bottom: 30px !important;
}

.accordion-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-body ul li i {
    color: var(--clr-black);
}

/* -------------------- Overview -------------------- */
#overview .section-heading {
    text-align: center;
    display: block;
}

/* -------------------- Highlights -------------------- */
.highlight-1 .highlights-list .point {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0 15px;
}

.highlight-1 .highlights-list .col:nth-child(odd) .point {
    background-color: hsla(from var(--clr-base) h s l / 0.3);
    padding: 5px 15px;
}

.highlight-1 .highlights-list .point i {
    color: var(--clr-black);
    font-size: 150%;
}

.highlight-2 {
    --highlights-height: 270px;
}

.highlight-2 .bd-img img {
    width: 100%;
    height: calc(var(--highlights-height) + 28%);
    object-fit: cover;
    object-position: center;
    border-radius: 0 50px 0 50px;
}

.highlight-2 .bd-img::before {
    height: calc(var(--highlights-height) + 18%);
}

.highlight-2 .highlights-list {
    background-color: #f1f2f2;
    height: var(--highlights-height);
    overflow: hidden;
    overflow-y: auto;
    align-content: space-evenly;
}

.highlight-2 .highlights-list .point {
    display: flex;
    gap: 15px;
}

.highlight-2 .highlights-list .point i {
    color: var(--clr-black);
    font-size: 150%;
    line-height: 1;
}

.highlight-2 .highlights-list::-webkit-scrollbar {
    width: 8px;
}

.highlight-2 .highlights-list::-webkit-scrollbar-track {
    background: linear-gradient(to right, transparent 30%, #000000 40%, transparent 30%);
    margin-top: 20px;
    margin-bottom: 20px;
}

.highlight-2 .highlights-list::-webkit-scrollbar-thumb {
    background: #000000;
}

.highlight-2 .highlights-list::-webkit-scrollbar-thumb:hover {
    background: var(--clr-gold);
}

/* -------------------- Price -------------------- */
.price-block-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.price-block {
    position: relative;
    background-color: #ffffff;
    padding: 15px 8px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--clr-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-block h4 {
    font-family: var(--ff-heading);
    font-size: 22px !important;
    font-weight: 700;
}

.price-block h5 {
    font-size: 18px !important;
    font-weight: 400;
}

.price-block h6 {
    font-family: var(--ff-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-gold);
}

.price-block h6 small {
    font-size: 14px;
    font-weight: 400;
}

.price-block button {
    border-radius: 50px;
    padding: 4px 20px;
    width: fit-content;
}

.price-slider-s-block .glide__slide {
    padding-bottom: 30px;
}


/* -------------------- Location map -------------------- */
.bd-iframe iframe {
    border-radius: 0 50px 0 50px;
    width: 100%;
    height: 180px;
}

/* -------------------- Footer -------------------- */
footer {
    grid-area: footer;
}

footer {
    background-color: var(--clr-dark);
    color: #cfc7b6;
}

footer p {
    color: #b7ae9a;
}

.footer-link {
    color: #cfc7b6;
    font: inherit;
    font-size: 12px;
}

.footer-link:hover {
    color: var(--clr-gold);
}

.reras span,
.copyright {
    color: #cfc7b6;
}

.footer-project-logo {
    max-width: 90%;
    height: 60px;
    margin-bottom: 15px;
}

.qr-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.qr-codes img {
    height: 100px;
    image-rendering: pixelated;
}

.reras {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.reras span {
    display: block;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
}

.copyright {
    display: block;
    font-size: 12px;
}

/* -------------------- Sidebar -------------------- */
sidebar {
    grid-area: sidebar;
    background-color: #ffffff;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

/* Legacy class-based sidebar — verify this is still used in markup */
.sidebar {
    grid-area: sidebar;
    background-color: #fff;
    padding: 20px;
}

.og-wrapper {
    display: none;
}

.og-wrapper .og-links {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--clr-black);
    color: var(--clr-t);
}

.og-wrapper .og-links a {
    width: 100%;
    text-decoration: none;
    font: inherit;
    color: inherit;
    text-align: center;
    padding: calc(0.6vw + 1px) calc(0.3vw + 1px);
    font-size: calc(0.75vw + 1px);
}

.og-wrapper .og-links a:not(:first-child) {
    border-left: 2px solid hsla(from var(--clr-t) h s l / 0.3);
}

.og-wrapper .og-links a:hover {
    background-color: var(--clr-s);
}

.og-open-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(1vw + 1px);
    padding: calc(0.75vw + 1px) calc(1vw + 1px);
}

.og-open-links .btn-wp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(1.5vw + 1px);
    background-color: #51cd60;
    color: #ffffff;
    border-radius: 50%;
    width: calc(2.2vw + 1px);
    height: calc(2.2vw + 1px);
}

.og-open-links .btn-wp-icon:hover,
.og-open-links .btn-wp-icon:focus {
    background-color: var(--clr-black);
    color: var(--clr-t);
}

sidebar .section-heading {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

/* -------------------- Form -------------------- */
.enq-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enq-form .form-control {
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 6px 15px;
}

.enq-form .form-control:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 0.2rem rgba(192, 138, 62, 0.25);
}

.enq-form .consent .form-check-label {
    font-size: 11px;
}

.enq-form .consent input[type="checkbox"] {
    filter: grayscale(1) opacity(0.5);
}

.enq-form .btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

sidebar .enq-form,
.enqPopup .enq-form {
    gap: 8px;
    padding: 10px;
}

.enqPopup .enq-form .btn-wrapper {
    margin-top: 0;
}

/* -------------------- Mobile footer CTA -------------------- */
.mob-ft-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background-image: linear-gradient(to left, var(--clr-s), var(--clr-black), var(--clr-s));
    color: var(--clr-t);
    letter-spacing: 1.1px;
    font-weight: 500;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    z-index: 999;
    display: flex;
    justify-content: space-evenly;
}

.mob-ft-cta a {
    font: inherit;
    color: inherit;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
}

.mob-ft-cta a:not(:first-child) {
    border-left: 2px solid rgba(0, 0, 0, 0.3);
}

/* -------------------- Enquiry popup -------------------- */
.enqPopup .modal-title {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 24px;
    font-size: 24px;
    text-transform: uppercase;
}

.enqPopup .modal-title::before {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 4px;
    width: 50px;
    background-color: var(--clr-base);
}

.enq-popup-cp-highlights {
    display: none;
}

.enq-popup-pj-highlights {
    border: 2px solid var(--clr-black);
    margin: 20px;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    text-align: center;
    text-transform: capitalize;
}

.enq-popup-pj-highlights h5 {
    background-color: var(--clr-black);
    color: var(--clr-t);
    display: inline-block;
    padding: 4px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.enq-popup-pj-highlights i {
    color: var(--clr-gold);
}

.popup-logo {
    display: block;
    text-align: center;
}

.popup-logo img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    max-height: 120px;
    padding-bottom: 1em;
}

/* -------------------- Glide slider -------------------- */
.slider-container {
    width: 100%;
}

.glide__arrow {
    box-shadow: unset;
}

.glide__arrows .glide__arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-radius: 500px;
    z-index: 3;
}

.glide__arrow--left {
    color: rgba(0, 0, 0, 0.75);
    font-size: 30px;
    left: -6%;
}

.glide__arrow--right {
    color: rgba(0, 0, 0, 0.75);
    font-size: 30px;
    right: -6%;
}

.banner .glide__arrows .glide__arrow {
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(20, 18, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    transition: all 250ms;
}

.banner .glide__arrows .glide__arrow:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #ffffff;
}

.banner .glide__arrow--left {
    left: 20px;
}

.banner .glide__arrow--right {
    right: 20px;
}

.banner .glide__bullets {
    bottom: 0.5em;
    display: flex;
    gap: 8px;
}

.banner .glide__bullet {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    box-shadow: none;
    margin: 0;
    transition: all 250ms;
}

.banner .glide__bullet--active,
.banner .glide__bullet.glide__bullet--active {
    background: var(--clr-gold);
    width: 26px;
}

/* -------------------- PND -------------------- */
.pnd-img {
    display: none;
}

/* NOTE: original rule used a min-height:650px query (device-height based),
   which doesn't map onto the width breakpoints below — kept as its own
   exception at the end of res.css instead of being forced into a bucket. */

/* -------------------- Misc -------------------- */
.thank-icon {
    font-size: clamp(80px, 7vw, 200px);
    line-height: 1;
    font-weight: 300;
    color: var(--clr-black);
}

.thank-icon-sub {
    color: rgba(0, 0, 0, 0.15);
}

.more-cont {
    display: none;
}


#highlights .highlight-2 .bd-img::after {
    bottom: unset;
    right: unset;
    top: 10px;
    left: 10px;
}

/* -------------------- gTranslate widget -------------------- */
.gtranslate_wrapper .gt_switcher-popup,
.gt_container-unisv1 a.glink span {
    font: inherit;
    color: inherit;
    font-size: 95%;
}

.gtranslate_wrapper .gt_switcher-popup span:first-of-type {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--clr-black);
}

.gt_white_content {
    width: max-content;
    height: unset;
    padding: 10px 15px;
    border-radius: 4px 25px;
    margin: unset;
    transform: translate(-50%, -50%);
}

.gt_white_content .gt_languages {
    flex-flow: row wrap;
    gap: 10px;
    max-height: unset;
}

.gt_white_content a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: unset;
    gap: 4px;
    border-bottom: unset;
    line-height: unset;
    padding: 8px 10px 5px;
    color: #353535;
    font-size: inherit;
    border: 2px solid #e7e7e7;
    border-radius: 0 12px;
}

.gt_white_content a:hover {
    color: var(--clr-black);
    border-color: var(--clr-black);
    transition: color 250ms, border-color 300ms;
}

.gt_white_content a.glink.gt-current-lang {
    font-weight: unset;
    background-color: var(--clr-black);
    color: var(--clr-t);
    border-color: var(--clr-black);
}

.gt_white_content a.glink img {
    border: 1px solid var(--clr-t);
}



/* -------------------- Hero overlay content -------------------- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(20, 18, 15, 0.55) 0%, rgba(20, 18, 15, 0.70) 50%, rgba(20, 18, 15, 0.55) 100%);
    padding: 20px;
    pointer-events: none;
}

.hero-overlay-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

.hero-headline {
    font-family: var(--ff-heading);
    font-weight: 600;
    color: #ffffff;
    font-size: clamp(22px, 4vw, 44px);
    line-height: 1.2;
    margin: 0 0 10px;
}

h1.hero-headline {
    color: #ffb042;
    font-size: 87px;
}

.hero-project-subhead {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: #ffb042;
    margin: 0 0 12px;
}

.hero-subtitle {
    color: #ffffff;
    font-size: clamp(13px, 1.6vw, 18px);
    font-weight: 400;
    margin: 0 0 20px;
}

.hero-divider {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
}

.hero-subtitle-gold {
    color: #ffb042;
    font-weight: 500;
}

.hero-pills {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-pills li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffb042;
    flex-shrink: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffb042;
    color: var(--clr-ink);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 26px;
    cursor: pointer;
    transition: all 250ms;
    margin-bottom: 16px;
}

.hero-cta:hover,
.hero-cta:focus {
    background-color: var(--clr-gold-dark);
    color: #ffffff;
}

.hero-cta i {
    font-size: 16px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 6px 16px;
}

.hero-location i {
    color: #ffb042;
}



.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.whatsapp-btn i {
    font-size: 28px;
}

.whatsapp-btn:hover {
    background-color: #1ebe5b;
    transform: translateY(-1px);
}


sidebar .gallery-img img {
    height: 239px;
    object-position: top;
}

sidebar .line {
    width: 70px;
    height: 2px;
    background-color: var(--clr-gold);
}

sidebar .or {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-gold-dark);
}


/* -------------------- Amenities grid -------------------- */
.amg-eyebrow {
    text-align: center;
    color: var(--clr-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.amg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amg-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.amg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 400ms ease;
}

.amg-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    transition: opacity 300ms;
}

.amg-item:hover img {
    transform: scale(1.06);
}

.amg-name {
    position: absolute;
    left: 10px;
    bottom: 8px;
    z-index: 2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}


/* -------------------- Gallery slider -------------------- */
.gal-slider-bleed {
    width: 100%;
    margin: 0 !important;
}

.gal-slider .glide__track {
    overflow: hidden;
}

.gal-slider .glide__slide {
    transition: 0.5s ease;
    transform: scale(0.86);
    z-index: 2;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gal-slider .glide__slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.288);
    transition: 0.5s ease;
}

.gal-slider .glide__slide.glide__slide--active {
    transform: scale(1);
    z-index: 5;
}

.gal-slider .glide__slide.glide__slide--active::before {
    content: none;
}

.gal-slide-img {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    text-decoration: none;
}

.gal-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gal-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.gal-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.35);
    background-color: transparent;
    color: #000000;
    font-size: 15px;
    cursor: pointer;
    transition: all 250ms;
}

.gal-nav-arrow:hover,
.gal-nav-arrow:focus {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #ffffff;
}

.gal-bullets {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gal-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 250ms;
}

.gal-bullet.glide__bullet--active {
    background: var(--clr-gold);
    width: 24px;
}


.loc-img {
    border-radius: 12px;
    border: 1px solid var(--clr-base);
    overflow: hidden;
    display: block;
}

.loc-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.qr-img {
    display: block;
    width: 100%;
    height: fit-content;
    border-radius: 15px;
    border: 2px solid var(--clr-base);
    overflow: hidden;
}

.qr-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

footer {
    background-color: var(--clr-dark);
    padding-bottom: 0 !important;
}

.ft-qr-code {
    display: flex;
    flex-shrink: 0;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    height: fit-content;
    overflow: hidden;
}

.ft-qr-code img {
    width: 100%;
    height: auto;
}

.ft-con {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.ft-con p {
    color: #ffffff;
    text-align: center;
    font-size: 11px;
    margin-bottom: 0;
}

.ft-con span {
    color: var(--clr-gold);
}

.ft-info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.project-det {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    padding-right: 24px;
}

.project-det::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 60px;
    background: var(--clr-base);
    top: 0;
    right: 0;
}

.project-det:last-child {
    padding-right: 0;
}

.project-det:last-child::before {
    display: none;
}

.project-det p {
    color: #f1f2f2;
    text-transform: uppercase;
    font-weight: 400;
    text-align: left;
    font-size: 10px;
}

.project-det span {
    font-size: 15px;
    color: var(--clr-gold);
}


.ft-disclaimer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
    margin-top: 20px;
    border: 1px solid var(--clr-base);
    border-left: none;
    border-right: none;
}

.ft-disclaimer p {
    text-align: center;
    margin-bottom: 0;
    font-size: 11px;
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    padding: 15px 0;
}

.ft-bottom .copyright {
    margin-bottom: 0;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

.ft-bottom .copyright span {
    color: var(--clr-gold);
}

.ft-bottom .ft-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ft-bottom .ft-links a {
    text-decoration: none;
    font-size: 13px;
    color: var(--clr-gold);
    font-weight: 500;
}

/* -------------------- Privacy Policy Page (pp-) -------------------- */
.pp-section {
    padding: 90px 0 70px;
}

.pp-intro {
    display: flex;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto;
}

.pp-tag {
    display: inline-block;
    font-family: var(--ff-base);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: 10px;
}

.pp-updated {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--clr-ink);
    opacity: .75;
    font-size: 15px;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    margin-top: 55px;
}

.pp-item {
    background-color: #fff;
    border: 1px solid var(--clr-cream-dark);
    border-radius: 14px;
    padding: 32px 30px;
}

.pp-item h2 {
    font-family: var(--ff-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--clr-ink);
    margin: 0 0 14px;
    padding-bottom: 12px;
    position: relative;
}

.pp-item h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 36px;
    background-color: var(--clr-gold);
}

.pp-item p {
    margin: 0;
    color: var(--clr-ink);
    opacity: .85;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .pp-grid {
        grid-template-columns: 1fr;
    }

    .pp-section {
        padding: 60px 0 50px;
    }
}




/* faq-sec */
.faq-accordion.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion  .accordion-item {
    color: var(--clr-dark) !important;
    background-color: var(--clr-t) !important;
    border: none !important;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
    overflow: visible !important;
}

.accordion-button {
    background-color: var(--clr-t) !important;
    padding: 18px 30px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 130% !important;
    text-align: left;
    border: none !important;
    border-radius: 10px !important;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--clr-cream);
    box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2) !important;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button i {
    font-size: 20px;
    color: var(--clr-gold);
    transition: 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--clr-cream);
}

.accordion-body {
    padding: 15px 30px 20px !important;
    font-size: 17px;
    font-weight: 500;
}