/* =========================================================
   Bootstrap 5 Custom Properties & Styles — Avaland
   ========================================================= */
@font-face {
    font-family: 'Distrampler';
    src: url('../fonts/Distrampler.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}


@font-face {
    font-family: 'JUST Sans';
    src: url('../fonts/JUST Sans Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'JUST Sans';
    src: url('../fonts/JUST Sans Medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'JUST Sans';
    src: url('../fonts/JUST Sans SemiBold.otf') format('opentype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'JUSTSans-SmBd';
    src: url('../fonts/JUST Sans SemiBold.otf') format('opentype');
    font-weight: 600;
    font-display: block;
}

@font-face {
    font-family: 'JUST Sans';
    src: url('../fonts/JUST Sans Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

/* ----- CSS Variables ----- */
:root {
    --bs-font-sans-serif: 'JUST Sans';
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 16px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: #1a1a2e;
    --bs-body-bg: #ffffff;

    --color-accent: #CEA884;
    --color-dark: #0f0f1a;
    --color-light: #f8f9fa;

    --section-pad-y: 5rem;
    --transition-base: 0.3s ease;

    --navbar-height: 70px;
    --navbar-link-color: #CEA884;
    --navbar-link-hover-color: #ffffff;
}

/* ----- Container max-width overrides ----- */
@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1750px;
    }
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #CEA884;
    border-radius: 9999px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #CEA884 transparent;
}

/* ----- Base Reset ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: color var(--transition-base), opacity var(--transition-base);
}

.font-distrampler {
    font-family: 'Distrampler', sans-serif;
}

.font-just-sans {
    font-family: 'JUST Sans', sans-serif;
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0rem;
}

.text-accent {
    color: var(--color-accent);
}

.text-semiaccent {
    color: #F0DED3
}

.text-gold {
    color: #c89a3a;
}

.text-md-accent {
    color: #C3A290;
}

.text-md-gold {
    color: #c89a3a;
}

h1 {
    font-size: clamp(1.5rem, 3.75vw, 2.625rem);
}

h2 {
    font-size: clamp(1.125rem, 3vw, 1.875rem);
}

h3 {
    font-size: clamp(1rem, 2.25vw, 1.5rem);
}

h4 {
    font-size: clamp(0.875rem, 1.875vw, 1.3rem);
}

h5 {
    font-size: clamp(0.8rem, 1.5vw, 1.125rem);
}

.fs-h1 {
    font-size: 80px;
    letter-spacing: 11px;
}

.fs-h2 {
    font-size: 70px;
    letter-spacing: 5px;
}

.fs-h3 {
    font-size: 42px;
    letter-spacing: 5px;
}

.fs-h3-alt {
    font-size: 45px;
    letter-spacing: 5px;
}

.fs-normal {
    font-size: 21px;
}

.fs-small {
    font-size: 14px;
}

p {
    margin-bottom: 1rem;
}

/* ----- Navbar ----- */
.navbar {
    height: 110px;
    font-family: "Distrampler";
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: var(--navbar-height) !important;
}

.navbar.scrolled {
    background: url('../images/header.webp') no-repeat center top / 100% 100%;
}

.navbar-brand img {
    height: 46px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--navbar-link-color);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 4.215px;
    text-transform: uppercase;
    padding: 0.5rem 0.5rem;
    position: relative;
}

.navbar-toggler {
    border: none;
    outline: none;
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ----- Scroll Snap ----- */
section {
    scroll-snap-align: start;
    scroll-margin-top: var(--navbar-height);
}

/* ----- Slide text transitions ----- */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-anim {
    opacity: 0;
}

.swiper-slide-active .slide-anim {
    animation: slideInUp 1.4s ease var(--delay, 0s) both;
}

/* ----- Header / Hero ----- */
.header {
    min-height: 100vh;
    background-color: var(--color-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
}

.slide-image {
    object-fit: cover;
    min-height: 100vh;
}

.swiper-button-next {
    position: absolute;
    right: 20px;
}

.swiper-button-next::after {
    font-size: 25px;
    color: var(--color-light);
}

.swiper-button-prev {
    position: absolute;
    left: 20px;
}

.swiper-button-prev::after {
    font-size: 25px;
    color: var(--color-light);
}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
    transition: opacity 0.3s ease;
}

.card-img-wrapper {
    overflow: hidden;
}

.card-img-wrapper:hover img {
    transform: scale(1.4);
    transition: transform var(--transition-base);
}

/* ----- Footer ----- */
.bg-footer-maroon {
    background-color: #6A2224;
}

.footer-section {
    color: #f4ece6;
}

.footer-info-title {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-info p,
.footer-meta-text,
.footer-contact-text,
.footer-mail {
    color: #f4ece6;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.footer-contact-row {
    flex-wrap: wrap;
}

.footer-icon {
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-text,
.footer-mail {
    font-size: 0.8rem;
}

.footer-mail {
    min-width: 250px;
    flex: 1 1 auto;
}

.footer-meta-text {
    font-size: 15px;
    letter-spacing: 0.06em;
}

.location-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.location-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
}

.map-container {
    width: calc(100% - 550px);
    /* min-height: 800px; */
    z-index: 1;
    aspect-ratio: 1/1;
    height: auto;
}

.map-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #304044;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.map-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.map-loader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(206, 168, 132, 0.2);
    border-top-color: #CEA884;
    border-radius: 50%;
    animation: mapSpin 0.8s linear infinite;
}

@keyframes mapSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Ensure the SVG or image inside the map container fills it like a background */
.map-container img,
.map-container svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenities-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 550px;
    height: 100%;
    background: #3C332C;
    z-index: 2;
    overflow-y: auto;
    padding: 28px 36px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}

.amenity-category {
    margin-bottom: 20px;
}

.amenity-category:last-child {
    margin-bottom: 0;
}

.amenity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    padding-top: 12px;
}

.amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF0E0;
    flex-shrink: 0;
}

.amenity-icon img.svg {
    width: 35px;
    height: 35px;
}

.amenity-title {
    font-family: 'JUST Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #F1DFD4;
    margin: 0;
    text-transform: uppercase;
    flex-grow: 1;
}

.amenity-chevron {
    display: none;
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #EFDDD2;
    padding-bottom: 12px;
}

.amenity-list li {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-family: 'JUST Sans', sans-serif;
    font-size: 12px;
    color: #F1DFD4;
    line-height: 1.4;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 1px solid #fff;
    transition: transform 0.15s ease;
}

.amenity-list li {
    cursor: pointer;
}

.amenity-list li.li--active .dot {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

@keyframes svgDotPulse {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(4);
    }

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

.svg-dot-highlighted circle {
    transform-box: fill-box;
    transform-origin: center;
    animation: svgDotPulse 0.45s ease forwards;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95));
}

.dot--red {
    background: #BE8054;
}

.dot--darkred {
    background: #C12328;
}

.dot--blue {
    background: #018BB7;
}

.dot--purple {
    background: #532B75;
}

.dot--green {
    background: #369353;
}

.dot--darkblue {
    background: #004B74;
}

.amenity-name {
    flex: 1;
}

.amenity-dist {
    min-width: 36px;
    text-align: right;
    padding-right: 6px;
    color: #F1DFD4;
}

.amenity-unit {
    color: #F1DFD4;
    font-size: 12px;
}

.register-section {
    position: relative;
    width: 100%;
    padding: 150px 0 100px;
    background: url('../images/form-bg.webp') no-repeat center center / 100% 100%;
    overflow: hidden;
}

.register-bg-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.1;
    z-index: 1;
}

.register-header {
    text-align: center;
    margin-bottom: 48px;
}

.register-title {
    font-family: 'JUST Sans', sans-serif;
    font-size: 25px !important;
    font-weight: 600;
    letter-spacing: 5px;
    color: #CEA884;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.register-subtitle {
    font-family: 'JUST Sans', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 32px;
    color: #F1DFD4;
    margin-bottom: 0;
    letter-spacing: 0.6px;
}

/* Field error messages */
.form-error {
    color: #e57373;
    font-size: 12px;
    margin: 4px 0 0;
    display: none;
}

.form-error[style*="display: block"],
.form-error:not([style*="display: none"]) {
    display: block;
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
}

.iti__selected-dial-code {
    color: #F1DFD4;
    font-size: 20px;
}

.iti__selected-country {
    padding-bottom: 4px !important;
}

.iti__search-input {
    padding-left: 8px !important;
}

.iti__flag-container {
    border-bottom: 1px solid #FED;
}

.iti__selected-country {
    background: transparent;
    padding: 0 8px 0 0;
}

.iti__selected-country:hover,
.iti__selected-country[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
}

.iti__dropdown-content {
    background: #231C16;
    border: 1px solid #CEA884;
    border-radius: 4px;
}

.iti__country {
    color: #F1DFD4;
}

.iti__country.iti__highlight,
.iti__country:hover {
    background: rgba(206, 168, 132, 0.15);
}

.iti__search-input {
    background: #3C332C;
    border: 1px solid #CEA884;
    color: #F1DFD4;
    border-radius: 4px;
    padding: 6px 10px;
    width: 100%;
    outline: none;
    font-size: 17px;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.6);
}

/* Inputs */
.register-form input[type="text"],
.register-form input[type="tel"],
.register-form input[type="email"],
.register-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #FED;
    padding: 10px 0 14px;
    font-family: 'JUST Sans', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #F1DFD4;
    outline: none;
    transition: border-color 0.3s ease;
}

.register-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.register-form input:focus,
.register-form select:focus {
    border-bottom-color: #CEA884;
}

/* Select */
.register-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 36px;
}

.register-form select option {
    background: #FFF;
    color: #221F1F;
}

.form-field--select {
    position: relative;
}

.form-field--select::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Ccircle cx='12.5' cy='12.5' r='12.5' fill='%23EFDDD2'/%3E%3Cpath d='M13.2559 17.1271C12.8572 17.5876 12.1428 17.5876 11.7441 17.1271L7.43778 12.1547C6.87691 11.507 7.33696 10.5 8.19371 10.5L16.8063 10.5C17.663 10.5 18.1231 11.507 17.5622 12.1547L13.2559 17.1271Z' fill='%233C332C'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.form-field--select:has(select:focus)::after {
    transform: rotate(180deg);
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
}

.custom-select__trigger {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #FED;
    padding: 10px 36px 14px 0;
    font-family: 'JUST Sans', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #F1DFD4;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.3s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select__trigger.is-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.custom-select__trigger.is-open,
.custom-select__trigger:focus {
    border-bottom-color: #CEA884;
}

.custom-select__chevron {
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Ccircle cx='12.5' cy='12.5' r='12.5' fill='%23EFDDD2'/%3E%3Cpath d='M13.2559 17.1271C12.8572 17.5876 12.1428 17.5876 11.7441 17.1271L7.43778 12.1547C6.87691 11.507 7.33696 10.5 8.19371 10.5L16.8063 10.5C17.663 10.5 18.1231 11.507 17.5622 12.1547L13.2559 17.1271Z' fill='%233C332C'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.custom-select.is-open .custom-select__chevron {
    transform: rotate(180deg);
}

.custom-select__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    z-index: 200;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    list-style: none;
    margin: 0;
    padding: 6px 2px;
    max-height: 260px;
    overflow-y: auto;
}

.custom-select__option {
    padding: 12px 16px;
    color: #221F1F;
    font-family: 'JUST Sans', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.custom-select__option:hover {
    background: #F5EDE7;
}

.custom-select__option.is-selected {
    background: #EFDDD2;
    font-weight: 500;
}

/* Radio */
.radio-label {
    display: block;
    font-family: 'JUST Sans', sans-serif;
    font-size: 21px;
    color: #F1DFD4;
    margin-bottom: 14px;
}

.radio-group {
    display: flex;
    gap: 24px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JUST Sans', sans-serif;
    font-size: 15px;
    color: #F1DFD4;
    cursor: pointer;
    user-select: none;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #FFEEDD;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

.radio-option input[type="radio"]:checked+.radio-custom {
    border-color: #CEA884;
}

.radio-option input[type="radio"]:checked+.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CEA884;
}

/* Consent */
.consent-section {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.consent-title {
    font-family: 'Distrampler', sans-serif;
    font-size: 33px;
    color: #CEA884;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #FED;
}

.accent-star {
    color: #CEA884;
    margin-left: 2px;
}

.consent-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'JUST Sans', sans-serif;
    font-size: 21px;
    color: #F1DFD4;
    cursor: pointer;
    user-select: none;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #FFEEDD;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.consent-checkbox a {
    color: #F1DFD4 !important;
    font-weight: 500;
}

.consent-checkbox input[type="checkbox"]:checked+.checkbox-custom {
    border-color: #CEA884;
    background: #CEA884;
}

.consent-checkbox input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 8px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    margin-bottom: 3px;
}

.recaptcha-wrapper {
    top: -30px;
}

/* Submit button */
.submit-wrapper {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.btn-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 40px;
    height: 48px;
    border-radius: 9999px;
    border: 2px solid #CEA884;
    background: transparent;
    font-family: 'JUST Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.85px;
    font-size: 17px;
    color: #CEA884;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #CEA884;
    color: #1a1410;
}

.reg-btn:hover img {
    filter: grayscale(100%);
}

.btn-submit:active {
    transform: scale(0.97);
}

/* Leaflet overrides */
.leaflet-control-attribution {
    display: none !important;
}

.side-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    position: relative;
    background: var(--bg-color);
}

.side-left {
    width: calc(100% - 620px);
    position: relative;
    height: 100%;
    min-height: 100vh;
}

.side-right {
    width: 620px;
    height: 100%;
    min-height: 100vh;
    position: relative;
}

.position-md-absolute {
    position: absolute;
}

.side-desc {
    color: #d8d4c8;
    font-size: 20px;
}

.slide-desc {
    font-size: 21px;
}

.letter-space {
    letter-spacing: 5px;
}

.hero-logo {
    max-width: 258;
}

.blc-title {
    line-height: 48px !important;
    font-size: 58px !important;
    letter-spacing: 8px;
    color: #F1DFD4;
}

.blc-subtitle {
    font-size: 34px;
    letter-spacing: 4px;
    color: #F1DFD4;
}

.overlay {
    position: absolute;
    background: linear-gradient(0deg, #FFF 64.51%, #614924 87.99%);
    opacity: 0.42;
    background-blend-mode: multiply;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991.98px) {

    .side-desc {
        color: #d8d4c8;
        font-size: 16px;
    }

    .text--md-accent {
        color: #F1DFD4 !important;
    }

    .text--md-gold {
        color: #fff !important;
    }

    :root {
        --section-pad-y: 3.5rem;
    }

    .position-md-absolute {
        position: relative;
    }

    .side-left {
        width: 100%;
        position: relative;
    }

    .footer-meta {
        width: 100%;
    }

    .navbar-collapse {
        background-color: var(--color-dark);
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .location-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .map-container {
        width: 100%;
    }

    .amenities-panel {
        position: relative;
        width: 100%;
        height: auto;
        max-height: none;
        box-shadow: none;
        padding: 24px 20px;
    }

    .amenity-header {
        cursor: pointer;
        justify-content: space-between;
        margin-bottom: 0;
        user-select: none;
    }

    .amenity-chevron {
        display: inline-flex;
        align-items: center;
        color: #F1DFD4;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .amenity-category.is-open .amenity-chevron {
        transform: rotate(180deg);
    }

    .amenity-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding-bottom 0.35s ease;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .amenity-category.is-open .amenity-list {
        max-height: 600px;
        padding-bottom: 12px;
        border-bottom: 1px solid #EFDDD2;
    }

    .register-section {
        padding: 60px 0 50px;
    }

    .register-subtitle {
        font-size: 17px;
        line-height: 28px;
    }

    .register-subtitle br {
        display: none;
    }

    .blc-title {
        line-height: 38px !important;
        font-size: 48px !important;
        letter-spacing: 7px;
    }

    .blc-subtitle {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .recaptcha-wrapper {
        top: 0px;
    }
}

@media (max-width: 767.98px) {

    .footer-info p,
    .footer-info span {
        margin-bottom: 0.3rem;
        font-size: 12px;
        text-align: start !important;
    }

    .footer-meta-text {
        font-size: 8px !important;
        letter-spacing: 0em;
    }

    :root {
        --section-pad-y: 2.5rem;
    }

    .navbar.scrolled {
        background: url('../images/header-m.webp') no-repeat center top / 100% auto !important;
    }

    .title-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        color: #F1DFD4 !important;
    }

    .title-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        background: #29190C;
        filter: blur(18.85px);
        z-index: 0;
    }

    h5 {
        font-size: 18px !important;
    }

    .side-right {
        width: 100%;
        height: 50%;
        max-height: 45vh;
        min-height: 45%;
        position: absolute !important;
        bottom: 0px;
        left: 0px;
        z-index: 3;
        background: inherit !important;
    }

    .side-right .slide-content {
        transform: scale(0.7) !important;
        margin-top: 24px !important;
    }

    .slide-desc {
        transform: scale(0.8) !important;
    }

    .side-left {
        height: 100%;
        width: 100%;
    }

    .consent-title {
        font-size: 25px !important;
    }

    .letter-space {
        letter-spacing: 3px;
    }

    /* Inputs */
    .register-form input[type="text"],
    .register-form input[type="tel"],
    .register-form input[type="email"],
    .register-form select {
        font-size: 15px;
    }

    .custom-select__trigger {
        font-size: 15px;
    }

    .iti__selected-dial-code {
        font-size: 15px;
    }

    .consent-title {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }

    .register-title {
        font-size: 15px !important;
        letter-spacing: 2.5px;
    }

    .register-subtitle {
        font-size: 15px;
        line-height: 24px;
    }
    .custom-select__option {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 575.98px) {

    /* Inputs */
    .register-form input[type="text"],
    .register-form input[type="tel"],
    .register-form input[type="email"],
    .register-form select {
        font-size: 12px;
    }

    .custom-select__trigger {
        font-size: 12px;
    }

    .custom-select__option {
        font-size: 13px;
        padding: 6px 10px;
    }

    .iti__selected-dial-code {
        font-size: 12px;
    }

    .navbar {
        height: 70px !important;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }

    .navbar-brand img {
        height: 32px !important;
    }

    .slide-header {
        transform: scale(0.8) !important;
    }

    .register-section {
        padding: 48px 0 40px;
        background: url('../images/form-bg-m.webp') no-repeat top left / 100% 100%;
    }

    .register-header {
        margin-bottom: 32px;
    }

    .register-title {
        font-size: 13px !important;
        letter-spacing: 2.5px;
    }

    .register-subtitle {
        font-size: 11px;
        line-height: 16px;
    }

    .btn-submit {
        padding: 14px 40px;
        font-size: 16px;
        letter-spacing: 2px;
    }

    .consent-checkbox {
        font-size: 15px;
        text-align: left;
    }

    .map-container {
        width: 100%;
    }

    .fs-h1 {
        font-size: 48px !important;
        letter-spacing: 4px !important;

    }

    .fs-h2 {
        font-size: 36px !important;
        letter-spacing: 2px !important;
    }

    .fs-h3 {
        font-size: 24px !important;
        letter-spacing: 1px;
    }

    .fs-h3-alt {
        font-size: 24px !important;
        letter-spacing: 1px !important;
    }

    .fs-normal {
        font-size: 17px !important;
    }

    .fs-small {
        font-size: 13px;
    }

    .hero-logo {
        max-width: 150px;
    }

    .swiper-button-prev {
        position: absolute;
        left: 0px;
    }

    .swiper-button-prev::after {
        font-size: 17px;
        color: var(--color-light);
    }

    .swiper-button-next {
        position: absolute;
        right: 0px;
    }

    .swiper-button-next::after {
        font-size: 17px;
        color: var(--color-light);
    }

    .second {
        transform: scale(0.8);
    }

    .first {
        transform: scale(0.85) !important;
    }

    .scale {
        transform: scale(0.7) !important;
    }

    .second-desc {
        font-size: 12px !important;
        font-weight: 300;
    }

    .map-container svg {
        transform: scale(1.1);
    }

    .taman h5 {
        font-size: 15px !important;
    }

    .taman p {
        font-size: 13px !important;
    }

    .blc-title {
        line-height: 30px !important;
        font-size: 36px !important;
        letter-spacing: 5px;
    }

    .blc-subtitle {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .footer-info p,
    .footer-info span,
    .footer-info li {
        margin-bottom: 0.3rem;
        font-size: 10px;
        text-align: start !important;
    }

    .amenity-title {
        font-size: 13px;
    }

    .amenity-category {
        margin-bottom: 8px;
    }

    .radio-label,
    .consent-checkbox,
    .radio-option {
        font-size: 11px;
    }

    .consent-title {
        font-size: 14px !important;
    }
}