:root {
    --primary-green: linear-gradient(180deg, #a17727 0%, #71541c 100%);
    --secondary-white: #ffffff;
    --gradient-gold-start: #bd8c2e;
    --gradient-gold-end: #ebdcc0;
    --dark-bg: #4f3312;
    --text-dark: #4f3312;
    --white: #ffffff;
    --green-whatsapp: var(--primary-green);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #4f3312;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', serif;
    line-height: 1.2;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--secondary-white);
}

.section-subtitle {
    font-size: 24px;
    font-weight: 400;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 0.65rem 1rem;
    background: rgba(85, 63, 21, 0.92);
    border-bottom: 1px solid rgba(235, 220, 192, 0.1);
    backdrop-filter: blur(18px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(85, 63, 21, 0.97);
    box-shadow: 0 16px 40px rgba(8, 4, 3, 0.28);
}

.navbar-nav .nav-link {
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #4f3312;
}

.nx-nav-list {
    gap: 0.35rem !important;
    padding: 0.42rem;
    border: 1px solid rgba(235, 220, 192, 0.14);
    border-radius: 999px;
    background: #4f3312;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 34px rgba(8, 4, 3, 0.18);
    backdrop-filter: blur(16px);
}

.nx-item {
    display: flex;
    align-items: center;
}

.nx-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    color: rgba(247, 242, 237, 0.88) !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    overflow: hidden;
}

.nx-link::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nx-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(189, 140, 46, 0.85), transparent);
    transform: scaleX(0.4);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nx-link:hover,
.nx-link.active {
    color: #ffffff !important;
    background: linear-gradient(90deg, transparent, rgba(189, 140, 46, 0.85), transparent);
    box-shadow: 0 12px 24px rgba(189, 140, 46, 0.28);
    transform: translateY(-1px);
}

.nx-link:focus-visible {
    color: #ffffff !important;
    background: linear-gradient(90deg, transparent, rgba(189, 140, 46, 0.85), transparent);
    box-shadow: 0 0 0 3px rgba(235, 220, 192, 0.22), 0 12px 24px rgba(189, 140, 46, 0.2);
    outline: none;
}

.nx-link:hover::before,
.nx-link.active::before,
.nx-link:hover::after,
.nx-link.active::after {
    opacity: 1;
}

.nx-link:hover::after,
.nx-link.active::after {
    transform: scaleX(1);
}

.nx-toggler-btn {
    border: 1px solid rgba(235, 220, 192, 0.18) !important;
    border-radius: 14px;
    background: rgba(247, 242, 237, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.nx-toggler-btn:hover {
    background: rgba(235, 220, 192, 0.16);
    border-color: rgba(235, 220, 192, 0.34) !important;
    transform: translateY(-1px);
}

.nx-toggler-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(189, 140, 46, 0.18);
}

/* .nx-toggler-btn .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(88%) sepia(17%) saturate(486%) hue-rotate(340deg) brightness(102%) contrast(91%);
} */



/* LOGOS */
.desk-nav-logo {
    width: 125px !important;
}

.mob-nav-logo {
    width: 120px;
}

.desk-dev-logo {
    width: 130px;
}

.mob-dev-logo {
    width: 130px;
}





/* ===== BUTTONS ===== */
.btn {
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    color: white;
}

.btn-gradient {
    background: linear-gradient(90deg, transparent, rgba(189, 140, 46, 0.85), transparent);
    color: #ffffff;
    padding: 16px 10px;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 140, 46, 0.4);
    color: #4f3312;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    /* background: #0d3a5f; */
    transform: translateY(-2px);
}


.dwnl-brouch {
    background: linear-gradient(180deg, #a17727 0%, #71541c 100%) !important;
}


.btn-whatsapp {
    background: var(--primary-green);
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: linear-gradient(180deg, #8e6922 0%, #4f3312 100%);
    box-shadow: 0 6px 20px rgba(113, 84, 28, 0.32);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    /* overflow: hidden; */
}

.hero-background {
    position: static;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-picture {
    display: block;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-form-container-parent {
    display: none;
}

.hero-title {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 32px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 150px;
}

.location-icon {
    margin-right: 16px;
}

.location-badge span {
    font-size: 24px;
    font-weight: 500;
}


/* Key Features */
.key-features-container {
    position: absolute;
    bottom: 0px;
}


.key-features-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 8px;
    border-radius: 0px;
    width: 100%;
    margin: 80px auto 0px;
}

#banner-details {
    background: #4f3312;
    padding: 0px !important;
}

#banner-details .key-features-row {
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
}

.feature-item h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/* Offer Card */


.offer-label {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.offer-percentage,
.offer-scheme {
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
    letter-spacing: 2px;
    margin: 10px 0;
}

.offer-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, white, transparent);
}

/* RERA Info */
.rera-info {
    position: relative;
    z-index: 2;
    text-align: right;
    /* margin-top: 40px; */
    padding-right: 50px;
}

.rera-info p {
    color: white;
    font-size: 16px;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
        padding: 40px 50px;
    }

    .hero-section {
        padding-top: 75px;
        /* min-height: 100vh; */
    }

    .offer-card {
        position: absolute;
        z-index: 2;
        background: #4f3312;
        color: white;
        padding: 20px;
        border-radius: 16px;
        text-align: center;
        right: 30px;
        top: 30px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--primary-green);
    padding: 80px 0;
}

.about-card {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.about-bg {
    position: absolute;
    height: 100%;
    object-fit: fill;
}

.about-content {
    position: absolute;
    z-index: 2;
    padding: 60px;
    color: white;
    bottom: 0;
    padding-bottom: 30px;
}

.about-content p {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    border-radius: 16px;
    background: #71541c99;
    padding: 20px;
    text-align: center;
}

.btn-site-visit {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    z-index: 1000;
    background: linear-gradient(203deg, #a17727 38%, #71541c 95%) !important;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-site-visit:hover {
    box-shadow: 0 4px 12px rgba(189, 140, 46, 0.4);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--white);
    padding: 0;
}

.features-content {
    width: 80%;
    margin: auto;
    color: var(--primary-green);
}

.features-title {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-green);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--primary-green);
}

.features-list li {
    font-size: 18px;
    padding: 5px 0;
    padding-left: 32px;
    position: relative;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 28px;
    line-height: 1;
}

/* ===== FLOOR PLANS SECTION ===== */
.floor-plans-section {
    background: var(--secondary-white);
    padding: 0;
}

.floor-plans-content {
    width: 80%;
    margin: auto;
}

.floor-plans-title {
    font-size: 48px;
    margin-bottom: 32px;
    color: #c79d4d;
    /* dark green title color */
}

/* Table container with border radius */
.floor-plan-table {
    border: 2px solid var(--dark-bg);
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    width: 100%;
    background: var(--primary-green);
}

/* Table header with gradient */
.floor-plan-table th {
    background: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #ffffff;
    font-size: 18px;
}

.floor-plan-table th:last-child {
    border-right: 0px;
}

/* Rounded corners for top */
.floor-plan-table thead th:first-child {
    border-top-left-radius: 12px;
}

.floor-plan-table thead th:last-child {
    border-top-right-radius: 12px;
}

/* Table body */
.floor-plan-table td {
    border: 1px solid var(--dark-bg);
    padding: 24px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: #4f3312;
    background: #ffffff;
}

/* Hover effect for rows */
.floor-plan-table tbody tr:hover {
    background: rgba(189, 140, 46, 0.08);
}

/* Rounded corners for bottom row */
.floor-plan-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.floor-plan-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .floor-plans-content {
        width: 95%;
    }

    .floor-plan-table th,
    .floor-plan-table td {
        padding: 16px;
        font-size: 16px;
    }

    .footer-sec-logo {
        display: grid;
        justify-content: center;
        align-items: center;
    }

}


/* ===== LOCATION SECTION ===== */
.location-section {
    background: linear-gradient(180deg, #a17727 0%, #71541c 100%);
    padding: 80px 0;
}

.location-label {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.location-tabs-wrapper {
    overflow-x: auto;
}

.location-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.location-tab {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-tab.active,
.location-tab:hover {
    background: #ffffff;
    color: var(--primary-green);
}

.location-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    min-height: 450px;
}

.location-details-title {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 32px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    font-size: 18px;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    min-height: 450px;
}

.map-placeholder {
    min-height: 450px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    background:
        radial-gradient(circle at top right, rgba(235, 220, 192, 0.55), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #ebdcc0 100%);
}

.map-placeholder-title {
    font-family: 'Montserrat', serif;
    font-size: 32px;
    color: var(--text-dark);
    margin: 0;
}

.map-placeholder-copy {
    margin: 0;
    font-size: 18px;
    color: #846835;
    max-width: 28rem;
}

.map-placeholder-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.map-load-btn {
    min-width: 160px;
}

.map-link {
    color: #bd8c2e;
    font-weight: 600;
    text-decoration: none;
}

.map-link:hover {
    color: #8e6922;
}

.map-container iframe {
    display: block;
    border-radius: 24px;
}

.map-container iframe[hidden],
.map-placeholder[hidden] {
    display: none;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    background: var(--primary-green);
    padding: 80px 0;
}

.amenities-label {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    color: var(--secondary-white);
}

.amenities-showcase {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 700px;
}

.amenity-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-tabs {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    background: rgba(85, 63, 21, 0.8);
    padding: 24px 32px;
    border-radius: 16px;
    justify-content: center;
}

.amenity-tab {
    background: transparent;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: 0px;
    box-shadow: none;
    border: 0px;
    opacity: .6;
}

.amenities-item {
    flex-basis: 20%;
    border-radius: 8px;
    border: 1px solid #c79d4d;
    padding: 32px 11px;
}

.amenity-tab.active,
.amenity-tab:hover {
    opacity: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--primary-green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.contact-section>.container {
    z-index: 1;
}

.contact-title {
    font-size: 50px;
    color: white;
    line-height: 1.2;
}

.contact-form-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-green);
}

.form-control {
    padding: 16px 12px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #dbc08c;
    border-radius: 0;
    background: transparent;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-green);
    box-shadow: none;
    background-color: transparent !important;
}

.input-group-text {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 16px 0px;
    cursor: not-allowed;
    gap: 5px;
    border-right: 1px solid lightgrey;
    padding-right: 10px;
}

#contactForm .input-group-text {
    border-bottom: 1px solid #dbc08c;
}

.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #846835;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== DEVELOPER SECTION ===== */
.developer-section {
    background: var(--white);
    padding: 50px 0;
}

.developer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #4f3312;
    color: white;
    padding: 32px 0;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.developer-logo-white {
    border-radius: 10px;
    width: 250px;
    border-radius: 10px;
    width: 250px;
    background: white;
    padding: 13px;
}

.lazy-image {
    display: block;
}

.error-side,
.error-modal {
    display: none;
    color: red;
    font-size: 13px;
    position: absolute;
    right: 20px;
    top: 18px;
}

.thank-you-container {
    transform: translate(-50%, -50%);
}

/* ===== UTILITIES ===== */
.rounded-4 {
    border-radius: 24px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 40px;
    }

}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-title {
        font-size: 48px;
    }

    .key-features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-content,
    .floor-plans-content {
        padding: 60px 40px;
    }

    .location-tab {
        width: 100%;
    }

    #banner-details {
        padding: 40px 10px !important;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 42px;
    }



    .location-badge span {
        font-size: 18px;
    }

    .key-features-row {
        grid-template-columns: 1fr;
        padding: 24px 16px;
    }

    .offer-percentage,
    .offer-scheme {
        font-size: 56px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-title,
    .floor-plans-title {
        font-size: 23px;
        text-align: center;
    }

    .features-content,
    .floor-plans-content {
        padding: 30px 20px;
        width: 100%;
    }

    .contact-title {
        font-size: 36px;
        text-align: center;
    }

    .contact-form-card {
        padding: 32px 20px;
    }

    .floor-plan-table th,
    .floor-plan-table td {
        padding: 16px 12px;
        font-size: 14px;
    }

    .location-details {
        padding: 30px 20px;
    }

    .amenities-showcase {
        height: 500px;
    }

    .developer-content p {
        font-size: 14px;
        text-align: justify;
    }
}

@media (max-width: 576px) {

    .btn-gradient {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .feature-item h6 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .contact-title {
        font-size: 28px;
    }

    .form-title {
        font-size: 24px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}



/* Extra safety + clarity */
.nx-navbar-inner {
    position: relative;
}

/* Center nav should truly stay centered */
@media (min-width: 992px) {
    .navbar {
        padding: 0.5rem;
        border-bottom: 0;
        backdrop-filter: none;
    }

    .navbar.scrolled {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nx-center-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }

    .nx-nav-list {
        gap: 1.35rem !important;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .nx-link {
        min-height: auto;
        padding: 0.5rem 0;
        border-radius: 0;
        color: var(--text-dark) !important;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
        background: none;
        overflow: visible;
    }

    .nx-link::before,
    .nx-link::after {
        content: none;
    }

    .nx-link:hover,
    .nx-link.active,
    .nx-link:focus-visible {
        color: #c79d4d !important;
        background: none;
        box-shadow: none;
        transform: none;
        outline: none;
    }
}

@media (max-width: 991.98px) {
    .nx-center-nav {
        width: 100%;
        margin-top: 14px;
    }

    .nx-nav-list {
        width: 100%;
        padding: 0.8rem;
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(113, 84, 28, 0.98) 0%, rgba(85, 63, 21, 0.98) 100%);
        box-shadow: 0 24px 42px rgba(8, 4, 3, 0.28);
        align-items: stretch !important;
    }

    .nx-item {
        width: 100%;
    }

    .nx-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.1rem;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        border: 1px solid rgba(235, 220, 192, 0.06);
    }

    .nx-link::after {
        left: 16px;
        right: auto;
        width: 42px;
        bottom: 12px;
        transform-origin: left center;
    }

    .nx-link:hover,
    .nx-link.active {
        transform: none;
    }

    .nx-mobile-cta {
        border-radius: 18px;
        box-shadow: 0 16px 28px rgba(189, 140, 46, 0.22);
    }
}


.amenities-icons {
    width: 60px;
}


@media (min-width: 1024px) and (max-width: 1199px) {


    .navbar {
        min-height: 62px;
    }

    .nx-center-nav {
        transform: translateX(-50%);
    }
}

.check-box,
.sidecheck-box {
    left: 0;
    top: 25px;
    background: rgb(37 36 36 / 90%);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 12px;
    z-index: 5
}



.btn:disabled {
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-bg);
    color: white;
    pointer-events: auto;

}


.btn:hover {
    color: white;
}


button:disabled {
    cursor: not-allowed !important;
}


input[type="checkbox"] {
    accent-color: var(--dark-bg);
    /* Purple */
}