/* =========================================================
   MUVA AT COMPASS PROPERTIES
   PREMIUM REAL ESTATE WEBSITE
   PROPERTIES.CSS
========================================================= */


/* =========================================================
   PAGE VARIABLES
========================================================= */

:root {
    --properties-dark: #10151d;
    --properties-dark-soft: #18202a;

    --properties-ivory: #f4ede3;
    --properties-ivory-light: #faf7f2;

    --properties-gold: #c7a15a;
    --properties-gold-light: #e5c987;

    --properties-white: #ffffff;
    --properties-muted: #73777d;

    --properties-border: rgba(16, 21, 29, 0.12);

    --properties-shadow:
        0 25px 70px rgba(16, 21, 29, 0.10);

    --properties-transition:
        0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   BASE
========================================================= */

.properties-hero,
.properties-intro,
.projects-section,
.properties-cta {
    position: relative;
}

.properties-hero img,
.project-image-wrap img,
.detail-image img,
.floorplan-image img,
.footer-logo img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   PAGE HERO
========================================================= */

.properties-hero {
    position: relative;
    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--properties-dark);
}

.properties-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.properties-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);
}

.properties-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(10, 14, 20, 0.88) 0%,
            rgba(10, 14, 20, 0.67) 42%,
            rgba(10, 14, 20, 0.25) 75%,
            rgba(10, 14, 20, 0.12) 100%
        );
}

.properties-hero .container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.properties-hero-content {
    width: min(760px, 100%);

    padding-top: 100px;
    padding-bottom: 100px;
}

.properties-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    color: var(--properties-gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.properties-eyebrow::before {
    content: "";

    width: 42px;
    height: 1px;

    background: var(--properties-gold);
}

.properties-hero h1 {
    max-width: 780px;

    margin: 0;

    color: var(--properties-white);

    font-size: clamp(52px, 7vw, 92px);
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.properties-hero h1 span {
    display: block;

    color: var(--properties-gold-light);

    font-style: italic;
    font-weight: 400;
}

.properties-hero-content > p {
    max-width: 590px;

    margin: 34px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 42px;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    color: var(--properties-white);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--properties-transition);
}

.hero-text-link span {
    color: var(--properties-gold-light);

    font-size: 20px;

    transition: transform var(--properties-transition);
}

.hero-text-link:hover {
    color: var(--properties-gold-light);
}

.hero-text-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   BUTTONS
========================================================= */

.properties-hero .btn,
.project-details .btn,
.floorplan-content .btn,
.properties-cta .btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform var(--properties-transition),
        background var(--properties-transition),
        color var(--properties-transition),
        border-color var(--properties-transition);
}

.btn-light {
    background: var(--properties-white);
    color: var(--properties-dark);
}

.btn-light:hover {
    background: var(--properties-gold-light);
    color: var(--properties-dark);

    transform: translateY(-3px);
}

.btn-dark {
    background: var(--properties-dark);
    color: var(--properties-white);
}

.btn-dark:hover {
    background: var(--properties-gold);
    color: var(--properties-dark);

    transform: translateY(-3px);
}


/* =========================================================
   INTRO
========================================================= */

.properties-intro {
    padding: 140px 0;

    background: var(--properties-ivory-light);
}

.intro-grid {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    gap: 90px;
}

.intro-label {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding-top: 9px;

    color: var(--properties-muted);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.intro-label span {
    color: var(--properties-gold);
}

.intro-content {
    max-width: 850px;
}

.intro-content h2 {
    margin: 0;

    color: var(--properties-dark);

    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -0.045em;
}

.intro-content h2 span {
    color: var(--properties-gold);

    font-style: italic;
    font-weight: 400;
}

.intro-content p {
    max-width: 720px;

    margin: 34px 0 0;

    color: #62666b;

    font-size: 16px;
    line-height: 1.85;
}

.intro-content p + p {
    margin-top: 18px;
}


/* =========================================================
   PROJECTS SECTION
========================================================= */

.projects-section {
    padding: 140px 0 0;

    background: var(--properties-ivory);
}

.section-top {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        360px;

    align-items: end;

    gap: 80px;

    margin-bottom: 70px;
}

.section-number {
    display: block;

    margin-bottom: 20px;

    color: var(--properties-gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-top h2 {
    margin: 0;

    color: var(--properties-dark);

    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.05em;
}

.section-top h2 span {
    color: var(--properties-gold);

    font-style: italic;
    font-weight: 400;
}

.section-top > p {
    margin: 0;

    color: var(--properties-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FEATURED PROJECT
========================================================= */

.project-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(390px, 0.7fr);

    min-height: 650px;

    margin-bottom: 110px;

    background: var(--properties-white);

    box-shadow: var(--properties-shadow);
}

.project-image-wrap {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: #d9d5ce;
}

.project-main-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-feature:hover .project-main-image {
    transform: scale(1.035);
}

.project-image-label {
    position: absolute;

    left: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px 16px;

    background: rgba(16, 21, 29, 0.82);

    backdrop-filter: blur(10px);

    color: var(--properties-white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-image-label span {
    color: var(--properties-gold-light);
}


/* =========================================================
   PROJECT DETAILS
========================================================= */

.project-details {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding: 70px 58px;
}

.project-meta {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 25px;
}

.project-meta span {
    color: var(--properties-gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.17em;
}

.project-meta span + span {
    position: relative;

    padding-left: 18px;
}

.project-meta span + span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--properties-gold);

    transform: translateY(-50%);
}

.project-details h3 {
    margin: 0;

    color: var(--properties-dark);

    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.project-details h3 span {
    display: block;

    color: var(--properties-gold);

    font-style: italic;
    font-weight: 400;
}

.project-description {
    margin: 28px 0 0;

    color: var(--properties-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 38px;

    border-top: 1px solid var(--properties-border);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid var(--properties-border);
}

.info-label {
    color: var(--properties-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.info-item strong {
    color: var(--properties-dark);

    font-size: 13px;
    font-weight: 600;

    text-align: right;
}


/* =========================================================
   PROJECT PRICE
========================================================= */

.project-price {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;
}

.project-price span {
    color: var(--properties-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.project-price strong {
    color: var(--properties-dark);

    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   PROJECT ACTIONS
========================================================= */

.project-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 5px;
}

.outline-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--properties-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.07em;

    text-decoration: none;
    text-transform: uppercase;

    transition: var(--properties-transition);
}

.outline-link span {
    color: var(--properties-gold);

    font-size: 18px;

    transition: transform var(--properties-transition);
}

.outline-link:hover {
    color: var(--properties-gold);
}

.outline-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   PROJECT DETAIL
========================================================= */

.project-detail-section {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    min-height: 580px;

    margin-bottom: 120px;

    background: var(--properties-dark);
}

.detail-image {
    min-height: 580px;

    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.detail-content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding: 80px;
}

.detail-number {
    display: block;

    margin-bottom: 22px;

    color: var(--properties-gold-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.detail-content h3,
.floorplan-content h3,
.amenities-heading h3,
.atlas-types-heading h3 {
    margin: 0;

    color: var(--properties-white);

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.05em;
}

.detail-content h3 span,
.floorplan-content h3 span,
.amenities-heading h3 span,
.atlas-types-heading h3 span {
    display: block;

    color: var(--properties-gold-light);

    font-style: italic;
    font-weight: 400;
}

.detail-content > p {
    max-width: 570px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   ADVANTAGE LIST
========================================================= */

.advantage-list {
    margin: 34px 0 0;

    padding: 0;

    list-style: none;
}

.advantage-list li {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 15px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.76);

    font-size: 13px;
    line-height: 1.5;
}

.advantage-list li:first-child {
    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.advantage-list li span {
    min-width: 25px;

    color: var(--properties-gold-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.1em;
}


/* =========================================================
   FLOOR PLAN
========================================================= */

.floorplan-feature {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    min-height: 600px;

    margin-bottom: 120px;

    background: var(--properties-dark-soft);
}

.floorplan-content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding: 75px;
}

.floorplan-content > p {
    max-width: 520px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 15px;
    line-height: 1.8;
}

.floorplan-types {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    margin: 35px 0 40px;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.floorplan-types > div {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 19px 15px 19px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);
}

.floorplan-types > div:nth-child(even) {
    padding-left: 15px;

    border-left:
        1px solid rgba(255, 255, 255, 0.10);
}

.floorplan-types strong {
    color: var(--properties-white);

    font-size: 19px;
    font-weight: 600;
}

.floorplan-types span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;

    letter-spacing: 0.05em;
}

.floorplan-image {
    min-height: 600px;

    overflow: hidden;

    background: var(--properties-white);
}

.floorplan-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 35px;
}


/* =========================================================
   AMENITIES
========================================================= */

.amenities-section {
    padding: 10px 0 130px;
}

.amenities-heading {
    margin-bottom: 55px;
}

.amenities-heading h3 {
    color: var(--properties-dark);
}

.amenities-heading h3 span {
    color: var(--properties-gold);
}

.amenities-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--properties-border);

    border-left:
        1px solid var(--properties-border);
}

.amenity {
    min-height: 220px;

    padding: 32px;

    border-right:
        1px solid var(--properties-border);

    border-bottom:
        1px solid var(--properties-border);

    transition:
        background var(--properties-transition),
        transform var(--properties-transition);
}

.amenity:hover {
    background: var(--properties-white);

    transform: translateY(-4px);
}

.amenity > span {
    display: block;

    margin-bottom: 42px;

    color: var(--properties-gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.amenity h4 {
    margin: 0;

    color: var(--properties-dark);

    font-size: 18px;
    font-weight: 600;
}

.amenity p {
    max-width: 250px;

    margin: 12px 0 0;

    color: var(--properties-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ATLAS PROJECT
========================================================= */

.atlas-project {
    margin-top: 0;
}

.atlas-details {
    background: var(--properties-white);
}

.atlas-details .detail-content {
    order: 1;
}

.atlas-details .detail-image {
    order: 2;

    background: var(--properties-ivory-light);
}

.atlas-details .detail-content h3 {
    color: var(--properties-dark);
}

.atlas-details .detail-content > p {
    color: var(--properties-muted);
}

.atlas-details .advantage-list li {
    color: var(--properties-dark);

    border-color:
        var(--properties-border);
}

.atlas-details .advantage-list li:first-child {
    border-top-color:
        var(--properties-border);
}


/* =========================================================
   ATLAS TYPES
========================================================= */

.atlas-types {
    padding: 10px 0 130px;
}

.atlas-types-heading {
    margin-bottom: 55px;
}

.atlas-types-heading h3 {
    color: var(--properties-dark);
}

.atlas-types-heading h3 span {
    color: var(--properties-gold);
}

.type-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--properties-border);

    border-left:
        1px solid var(--properties-border);
}

.type-card {
    position: relative;

    min-height: 240px;

    padding: 35px;

    border-right:
        1px solid var(--properties-border);

    border-bottom:
        1px solid var(--properties-border);

    background: transparent;

    transition:
        background var(--properties-transition),
        transform var(--properties-transition);
}

.type-card:hover {
    background: var(--properties-white);

    transform: translateY(-5px);
}

.type-card > span {
    display: block;

    margin-bottom: 65px;

    color: var(--properties-gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.type-card strong {
    display: block;

    color: var(--properties-dark);

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;

    letter-spacing: -0.04em;
}

.type-card p {
    margin: 8px 0 0;

    color: var(--properties-muted);

    font-size: 12px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.properties-cta {
    display: grid;

    grid-template-columns:
        130px
        minmax(0, 1fr);

    gap: 50px;

    padding: 100px;

    margin-bottom: 0;

    background: var(--properties-dark);

    overflow: hidden;
}

.properties-cta::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -260px;

    border:
        1px solid rgba(229, 201, 135, 0.18);

    border-radius: 50%;

    pointer-events: none;
}

.cta-number {
    color: var(--properties-gold-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.cta-content {
    position: relative;

    z-index: 1;

    max-width: 850px;
}

.cta-content > span {
    display: block;

    margin-bottom: 25px;

    color: var(--properties-gold-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.cta-content h2 {
    max-width: 850px;

    margin: 0;

    color: var(--properties-white);

    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.055em;
}

.cta-content h2 em {
    display: block;

    color: var(--properties-gold-light);

    font-style: italic;
    font-weight: 400;
}

.cta-content p {
    max-width: 580px;

    margin: 30px 0 35px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.property-card,
.location-card,
.why-card,
.about-visual,
.about-content,
.intro-content {
    opacity: 1;
}

.properties-intro .intro-content,
.project-feature,
.project-detail-section,
.floorplan-feature,
.amenity,
.type-card {
    will-change: transform, opacity;
}

.reveal-hidden {
    opacity: 0;

    transform: translateY(35px);
}

.revealed {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.project-feature a:focus-visible,
.properties-cta a:focus-visible,
.hero-actions a:focus-visible,
.nav a:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid var(--properties-gold);

    outline-offset: 5px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .properties-hero {
        min-height: 680px;
    }

    .intro-grid {
        grid-template-columns:
            170px
            minmax(0, 1fr);

        gap: 55px;
    }

    .section-top {
        grid-template-columns:
            minmax(0, 1fr)
            300px;

        gap: 45px;
    }

    .project-feature {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(350px, 0.85fr);
    }

    .project-details {
        padding: 50px 40px;
    }

    .detail-content {
        padding: 60px;
    }

    .floorplan-content {
        padding: 60px;
    }

    .properties-cta {
        padding: 75px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .properties-hero {
        min-height: 640px;
    }

    .properties-hero-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .properties-hero h1 {
        font-size: clamp(48px, 10vw, 72px);
    }

    .properties-intro {
        padding: 100px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .intro-label {
        padding-top: 0;
    }

    .projects-section {
        padding-top: 100px;
    }

    .section-top {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }

    .project-feature {
        grid-template-columns: 1fr;

        margin-bottom: 80px;
    }

    .project-image-wrap {
        min-height: 500px;
    }

    .project-details {
        padding: 55px 45px;
    }

    .project-detail-section {
        grid-template-columns: 1fr;

        margin-bottom: 90px;
    }

    .detail-image {
        min-height: 450px;

        max-height: 550px;
    }

    .detail-content {
        padding: 60px 45px;
    }

    .atlas-details .detail-content {
        order: 1;
    }

    .atlas-details .detail-image {
        order: 2;
    }

    .floorplan-feature {
        grid-template-columns: 1fr;

        margin-bottom: 90px;
    }

    .floorplan-content {
        padding: 60px 45px;
    }

    .floorplan-image {
        min-height: 500px;
    }

    .amenities-section {
        padding-bottom: 90px;
    }

    .amenities-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .atlas-types {
        padding-bottom: 90px;
    }

    .type-grid {
        grid-template-columns: 1fr;
    }

    .properties-cta {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 70px 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .properties-hero {
        min-height: 600px;
    }

    .properties-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 14, 20, 0.88),
                rgba(10, 14, 20, 0.56)
            );
    }

    .properties-hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .properties-eyebrow {
        margin-bottom: 20px;

        font-size: 9px;
    }

    .properties-eyebrow::before {
        width: 28px;
    }

    .properties-hero h1 {
        font-size: clamp(43px, 13vw, 60px);

        line-height: 1;
    }

    .properties-hero-content > p {
        margin-top: 25px;

        font-size: 14px;

        line-height: 1.7;
    }

    .hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-top: 32px;
    }

    .properties-hero .btn {
        width: 100%;
    }

    .properties-intro {
        padding: 80px 0;
    }

    .intro-content h2 {
        font-size: 40px;
    }

    .intro-content p {
        margin-top: 25px;

        font-size: 14px;

        line-height: 1.75;
    }

    .projects-section {
        padding-top: 80px;
    }

    .section-top h2 {
        font-size: 43px;
    }

    .section-top > p {
        font-size: 14px;
    }

    .project-feature {
        margin-bottom: 65px;
    }

    .project-image-wrap {
        min-height: 360px;
    }

    .project-image-label {
        left: 18px;
        bottom: 18px;

        padding: 10px 12px;

        font-size: 8px;
    }

    .project-details {
        padding: 40px 24px;
    }

    .project-meta {
        margin-bottom: 20px;
    }

    .project-meta span {
        font-size: 8px;
    }

    .project-details h3 {
        font-size: 43px;
    }

    .project-description {
        margin-top: 22px;

        font-size: 14px;
    }

    .project-info {
        margin-top: 28px;
    }

    .info-item {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;

        padding: 13px 0;
    }

    .info-item strong {
        text-align: left;

        font-size: 12px;
    }

    .project-price {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

        padding: 20px 0;
    }

    .project-price strong {
        font-size: 17px;
    }

    .project-actions {
        align-items: stretch;

        flex-direction: column;

        gap: 18px;
    }

    .project-details .btn {
        width: 100%;
    }

    .project-detail-section {
        margin-bottom: 65px;
    }

    .detail-image {
        min-height: 300px;

        max-height: 400px;
    }

    .detail-content {
        padding: 50px 24px;
    }

    .detail-content h3,
    .floorplan-content h3,
    .amenities-heading h3,
    .atlas-types-heading h3 {
        font-size: 40px;
    }

    .detail-content > p {
        margin-top: 23px;

        font-size: 14px;
    }

    .advantage-list {
        margin-top: 25px;
    }

    .advantage-list li {
        align-items: flex-start;

        gap: 12px;

        padding: 13px 0;

        font-size: 12px;
    }

    .floorplan-feature {
        margin-bottom: 65px;
    }

    .floorplan-content {
        padding: 50px 24px;
    }

    .floorplan-content > p {
        margin-top: 23px;

        font-size: 14px;
    }

    .floorplan-types {
        grid-template-columns: 1fr;

        margin: 28px 0 32px;
    }

    .floorplan-types > div:nth-child(even) {
        padding-left: 0;

        border-left: 0;
    }

    .floorplan-image {
        min-height: 360px;
    }

    .floorplan-image img {
        padding: 18px;
    }

    .amenities-section {
        padding-bottom: 65px;
    }

    .amenities-heading {
        margin-bottom: 35px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity {
        min-height: 190px;

        padding: 25px;
    }

    .amenity > span {
        margin-bottom: 30px;
    }

    .atlas-types {
        padding-bottom: 65px;
    }

    .atlas-types-heading {
        margin-bottom: 35px;
    }

    .type-card {
        min-height: 200px;

        padding: 28px 24px;
    }

    .type-card > span {
        margin-bottom: 50px;
    }

    .properties-cta {
        padding: 60px 24px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-content p {
        font-size: 14px;

        margin-top: 25px;
    }

    .properties-cta .btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .properties-hero h1 {
        font-size: 40px;
    }

    .intro-content h2,
    .section-top h2,
    .project-details h3,
    .detail-content h3,
    .floorplan-content h3,
    .amenities-heading h3,
    .atlas-types-heading h3,
    .cta-content h2 {
        font-size: 36px;
    }

    .project-details,
    .detail-content,
    .floorplan-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .properties-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================================
   IMPORTANT — SHARED HEADER
========================================================= */

/*
   The header is intentionally NOT styled here.

   properties.html uses the same header structure as
   index.html:

   .header
   .nav-container
   .brand
   .logo-placeholder
   .brand-text
   .nav
   .nav-link
   .nav-whatsapp
   .menu-toggle
   .menu-overlay

   These are controlled by style.css and script.js.

   This prevents properties.css from overriding the
   index.html header behavior, including:

   - Header hide/show while scrolling
   - Header height
   - Logo sizing
   - Navigation
   - Mobile menu
   - Mobile overlay
   - Scroll behavior
*/


/* =========================================================
   END OF PROPERTIES.CSS
========================================================= */
/* =========================================================
   PREMIUM LANGUAGE SWITCHER
========================================================= */

.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 22px;
}

.language-switcher::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #e5bb67;
    border-bottom: 1.5px solid #e5bb67;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.language-switcher i {
    position: absolute;
    left: 13px;
    font-size: 16px;
    color: #e5bb67;
    pointer-events: none;
    z-index: 2;
}

.language-switcher select {
    appearance: none;
    -webkit-appearance: none;

    min-width: 125px;
    height: 42px;

    padding: 0 34px 0 38px;

    border: 1px solid rgba(229, 187, 103, 0.35);
    border-radius: 4px;

    background: rgba(14, 26, 50, 0.75);
    color: #f4ede3;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;

    cursor: pointer;
    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.language-switcher select:hover {
    border-color: #e5bb67;
    background: rgba(14, 26, 50, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.language-switcher select:focus {
    border-color: #e5bb67;
    box-shadow: 0 0 0 3px rgba(229, 187, 103, 0.10);
}

.language-switcher select option {
    background: #0e1a32;
    color: #f4ede3;
    padding: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .language-switcher {
        margin-left: auto;
        margin-right: 12px;
    }

    .language-switcher select {
        min-width: 105px;
        height: 38px;

        padding-left: 34px;
        padding-right: 28px;

        font-size: 11px;
    }

    .language-switcher i {
        left: 11px;
        font-size: 15px;
    }

    .language-switcher::after {
        right: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .language-switcher {
        margin-right: 8px;
    }

    .language-switcher select {
        min-width: 92px;
        height: 36px;

        padding-left: 30px;
        padding-right: 25px;

        font-size: 10px;
    }

    .language-switcher i {
        left: 9px;
        font-size: 14px;
    }

    .language-switcher::after {
        right: 9px;
        width: 5px;
        height: 5px;
    }
}
/* =========================================================
   PROPERTY DETAILS POPUP
   Matches the New Year Promotion Popup Style
========================================================= */

.property-details-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.property-details-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
   BACKDROP
========================================================= */

.property-modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(9, 18, 37, 0.78);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);
}


/* =========================================================
   MODAL CARD
========================================================= */

.property-modal-card {
    position: relative;
    z-index: 2;

    width: min(
        760px,
        100%
    );

    max-height:
        calc(100vh - 40px);

    overflow-y: auto;

    background:
        linear-gradient(
            145deg,
            #12213e 0%,
            #0e1a32 55%,
            #091225 100%
        );

    color: #ffffff;

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.35
        );

    box-shadow:
        0 35px 100px
        rgba(
            0,
            0,
            0,
            0.45
        );

    transform:
        translateY(25px)
        scale(0.96);

    transition:
        transform
        0.45s
        cubic-bezier(
            .2,
            .8,
            .2,
            1
        );

    scrollbar-width:
        thin;
}


.property-details-modal.active
.property-modal-card {

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.property-modal-decoration {
    position: absolute;

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.12
        );

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


.property-modal-decoration-one {

    width: 420px;
    height: 420px;

    right: -230px;
    top: -210px;

}


.property-modal-decoration-two {

    width: 620px;
    height: 620px;

    right: -330px;
    top: -310px;

    border-color:
        rgba(
            212,
            175,
            55,
            0.06
        );

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.property-modal-close {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 20;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    font-size: 21px;

    cursor: pointer;

    transition:
        background
        0.3s ease,
        color
        0.3s ease,
        transform
        0.3s ease;
}


.property-modal-close:hover {

    background:
        #D4AF37;

    color:
        #0E1A32;

    transform:
        rotate(90deg);

}


/* =========================================================
   IMAGE
========================================================= */

.property-modal-image-wrap {

    position: relative;

    width: 100%;

    height: 260px;

    overflow: hidden;

    background:
        #091225;

}


.property-modal-image-wrap img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform
        0.6s ease;

}


.property-details-modal.active
.property-modal-image-wrap img {

    transform:
        scale(1);

}


.property-modal-status {

    position: absolute;

    left: 20px;
    bottom: 20px;

    padding:
        8px 12px;

    background:
        rgba(
            14,
            26,
            50,
            0.88
        );

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            0.45
        );

    color:
        #D4AF37;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

}


/* =========================================================
   CONTENT
========================================================= */

.property-modal-content {

    position: relative;

    z-index: 3;

    padding:
        32px 38px 36px;

}


.property-modal-eyebrow {

    display: block;

    margin-bottom: 15px;

    color:
        #D4AF37;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;

}


.property-modal-divider {

    width: 45px;
    height: 1px;

    margin-bottom: 20px;

    background:
        #D4AF37;

}


.property-modal-type {

    display: block;

    margin-bottom: 9px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

}


.property-modal-content h2 {

    margin: 0;

    max-width:
        580px;

    font-family:
        "Playfair Display",
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            34px,
            5vw,
            48px
        );

    font-weight:
        500;

    line-height:
        1.05;

    letter-spacing:
        -0.035em;

    color:
        #ffffff;

}


.property-modal-location {

    display: flex;

    align-items:
        center;

    gap: 7px;

    margin-top:
        13px;

    color:
        rgba(
            255,
            255,
            255,
            0.56
        );

    font-size:
        12px;

}


.property-modal-location i {

    color:
        #D4AF37;

    font-size:
        15px;

}


/* =========================================================
   PRICE
========================================================= */

.property-modal-price {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    margin-top:
        22px;

    padding:
        17px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

}


.property-modal-price span {

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

}


.property-modal-price strong {

    color:
        #D4AF37;

    font-size:
        17px;

    font-weight:
        600;

    text-align:
        right;

}


/* =========================================================
   INFORMATION GRID
========================================================= */

.property-modal-info-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    margin-top:
        20px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

}


.property-modal-info-item {

    min-height:
        65px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    gap: 5px;

    padding:
        11px 14px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

}


.property-modal-info-item span {

    color:
        rgba(
            255,
            255,
            255,
            0.4
        );

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;

}


.property-modal-info-item strong {

    color:
        #ffffff;

    font-size:
        12px;

    font-weight:
        500;

}


/* =========================================================
   PROMOTION
========================================================= */

.property-modal-promotion {

    margin-top:
        18px;

    padding:
        15px 17px;

    border-left:
        1px solid
        #D4AF37;

    background:
        rgba(
            212,
            175,
            55,
            0.045
        );

}


.property-modal-promotion-label span {

    color:
        #D4AF37;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

}


.property-modal-promotion-values {

    display:
        flex;

    align-items:
        center;

    gap:
        30px;

    margin-top:
        8px;

}


.property-modal-promotion-values div {

    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

}


.property-modal-promotion-values small {

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    font-size:
        8px;

    text-transform:
        uppercase;

}


.property-modal-promotion-values strong {

    color:
        #ffffff;

    font-size:
        15px;

    font-weight:
        600;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.property-modal-description {

    margin-top:
        22px;

}


.property-modal-description > span {

    display:
        block;

    margin-bottom:
        9px;

    color:
        #D4AF37;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

}


.property-modal-description p {

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    font-size:
        12px;

    line-height:
        1.8;

}


/* =========================================================
   ACTIONS
========================================================= */

.property-modal-actions {

    display:
        flex;

    align-items:
        stretch;

    gap:
        10px;

    margin-top:
        25px;

}


.property-modal-primary,
.property-modal-whatsapp {

    min-height:
        48px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    padding:
        0 17px;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.06em;

    text-transform:
        uppercase;

    transition:
        background
        0.3s ease,
        color
        0.3s ease,
        transform
        0.3s ease;

}


.property-modal-primary {

    flex:
        1;

    background:
        #D4AF37;

    color:
        #0E1A32;

}


.property-modal-primary:hover {

    background:
        #e5c45b;

    color:
        #0E1A32;

    transform:
        translateY(-2px);

}


.property-modal-whatsapp {

    flex:
        1;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    background:
        rgba(
            255,
            255,
            255,
            0.03
        );

}


.property-modal-whatsapp:hover {

    background:
        #25D366;

    border-color:
        #25D366;

    color:
        #ffffff;

    transform:
        translateY(-2px);

}


.property-modal-whatsapp i {

    font-size:
        16px;

}


/* =========================================================
   MOBILE
========================================================= */

@media (
    max-width: 600px
) {

    .property-details-modal {

        padding:
            12px;

    }


    .property-modal-card {

        max-height:
            calc(
                100vh - 24px
            );

    }


    .property-modal-image-wrap {

        height:
            190px;

    }


    .property-modal-content {

        padding:
            27px 22px 25px;

    }


    .property-modal-content h2 {

        font-size:
            34px;

    }


    .property-modal-price {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            7px;

    }


    .property-modal-price strong {

        text-align:
            left;

        font-size:
            15px;

    }


    .property-modal-info-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .property-modal-actions {

        flex-direction:
            column;

    }


    .property-modal-primary,
    .property-modal-whatsapp {

        width:
            100%;

    }


    .property-modal-close {

        top:
            12px;

        right:
            12px;

        width:
            38px;

        height:
            38px;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (
    max-width: 380px
) {

    .property-modal-image-wrap {

        height:
            165px;

    }


    .property-modal-content {

        padding:
            24px 18px 22px;

    }


    .property-modal-content h2 {

        font-size:
            30px;

    }


    .property-modal-info-grid {

        grid-template-columns:
            1fr;

    }


    .property-modal-promotion-values {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            12px;

    }

}
/* =========================================================
   MUVA PROPERTY CARDS
   CLEAN PUBLIC CARD
   ========================================================= */

.dynamic-property {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(14, 26, 50, 0.08);
    box-shadow:
        0 15px 45px rgba(14, 26, 50, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.dynamic-property:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 65px rgba(14, 26, 50, 0.13);
}


/* =========================================================
   IMAGE
   ========================================================= */

.property-image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e9e9e9;
}

.property-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.dynamic-property:hover .property-image {
    transform: scale(1.045);
}


/* =========================================================
   STATUS
   ========================================================= */

.property-status {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 13px;
    background: #0E1A32;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.5);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.property-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 190px;
    padding: 25px;
}

.property-card-title {
    margin: 0;
    color: #0E1A32;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #6d6d6d;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.property-card-location i {
    flex-shrink: 0;
    color: #D4AF37;
    font-size: 17px;
}


/* =========================================================
   VIEW DETAILS BUTTON
   ========================================================= */

.property-view-details {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #0E1A32;
    background: #0E1A32;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.property-view-details:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0E1A32;
    transform: translateY(-2px);
}

.property-view-details i {
    font-size: 16px;
    transition:
        transform 0.3s ease;
}

.property-view-details:hover i {
    transform: translateX(4px);
}


/* =========================================================
   PROPERTY REVEAL
   ========================================================= */

.dynamic-property {
    opacity: 0;
    transform: translateY(25px);
}

.dynamic-property.revealed {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   LOADING
   ========================================================= */

.properties-loading {
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.properties-loading span {
    width: 34px;
    height: 34px;
    border: 2px solid rgba(14, 26, 50, 0.12);
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation:
        muvaPropertySpin 0.8s linear infinite;
}

.properties-loading p {
    margin: 0;
    color: #666666;
    font-size: 13px;
}

@keyframes muvaPropertySpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   EMPTY / ERROR
   ========================================================= */

.properties-message {
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.properties-message i {
    font-size: 40px;
    color: #D4AF37;
}

.properties-message p {
    max-width: 500px;
    margin: 0;
    color: #666666;
    font-size: 14px;
}


/* =========================================================
   PROPERTY DETAILS MODAL
   PROMO-STYLE POPUP
   ========================================================= */

.property-details-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.property-details-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
   MODAL BACKDROP
   ========================================================= */

.property-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        rgba(9, 18, 37, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   MODAL CARD
   ========================================================= */

.property-modal-card {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background:
        linear-gradient(
            145deg,
            #12213e 0%,
            #0e1a32 55%,
            #091225 100%
        );
    color: #ffffff;
    border: 1px solid rgba(
        212,
        175,
        55,
        0.35
    );
    box-shadow:
        0 35px 100px rgba(
            0,
            0,
            0,
            0.45
        );
    transform:
        translateY(25px)
        scale(0.96);
    transition:
        transform 0.45s
        cubic-bezier(
            .2,
            .8,
            .2,
            1
        );
}

.property-details-modal.active
.property-modal-card {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   MODAL CLOSE
   ========================================================= */

.property-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(
        255,
        255,
        255,
        0.15
    );
    background:
        rgba(
            255,
            255,
            255,
            0.05
        );
    color:
        rgba(
            255,
            255,
            255,
            0.85
        );
    font-size: 21px;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.property-modal-close:hover {
    background: #D4AF37;
    color: #0E1A32;
    transform: rotate(90deg);
}


/* =========================================================
   MODAL IMAGE
   ========================================================= */

.property-modal-image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #091225;
}

.property-modal-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.property-modal-status {
    position: absolute;
    bottom: 18px;
    left: 20px;
    padding: 8px 13px;
    background: #D4AF37;
    color: #0E1A32;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   MODAL CONTENT
   ========================================================= */

.property-modal-content {
    padding: 32px;
}

.property-modal-heading {
    padding-right: 55px;
}

.property-modal-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #D4AF37;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.property-modal-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
}

.property-modal-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 11px;
    color: rgba(
        255,
        255,
        255,
        0.68
    );
    font-size: 13px;
}

.property-modal-location i {
    color: #D4AF37;
    font-size: 17px;
}


/* =========================================================
   PRICE
   ========================================================= */

.property-modal-price {
    margin-top: 25px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid rgba(
        212,
        175,
        55,
        0.25
    );
    background:
        rgba(
            212,
            175,
            55,
            0.06
        );
}

.property-modal-price-label {
    color: rgba(
        255,
        255,
        255,
        0.6
    );
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.property-modal-price strong {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
}


/* =========================================================
   DETAIL GRID
   ========================================================= */

.property-modal-info-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 1px;
    margin-top: 20px;
    background:
        rgba(
            255,
            255,
            255,
            0.1
        );
    border: 1px solid rgba(
        255,
        255,
        255,
        0.1
    );
}

.property-detail-item {
    min-width: 0;
    padding: 15px;
    background:
        rgba(
            14,
            26,
            50,
            0.72
        );
}

.property-detail-item span {
    display: block;
    margin-bottom: 5px;
    color: rgba(
        255,
        255,
        255,
        0.5
    );
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.property-detail-item strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}


/* =========================================================
   PROMOTION
   ========================================================= */

.property-modal-promotion {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(
        212,
        175,
        55,
        0.28
    );
    background:
        rgba(
            212,
            175,
            55,
            0.06
        );
}

.property-promotion-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.property-promotion-title i {
    font-size: 17px;
}

.property-promotion-items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 14px;
}

.property-promotion-items > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.property-promotion-items span {
    color: rgba(
        255,
        255,
        255,
        0.5
    );
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.property-promotion-items strong {
    color: #ffffff;
    font-size: 16px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.property-modal-description {
    margin-top: 24px;
}

.property-modal-description h3 {
    margin: 0 0 9px;
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.property-modal-description p {
    margin: 0;
    color: rgba(
        255,
        255,
        255,
        0.72
    );
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   MODAL ACTIONS
   ========================================================= */

.property-modal-actions {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.property-modal-contact,
.property-modal-whatsapp {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.property-modal-contact {
    border: 1px solid #D4AF37;
    background: #D4AF37;
    color: #0E1A32;
}

.property-modal-contact:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: #ffffff;
}

.property-modal-whatsapp {
    border: 1px solid rgba(
        255,
        255,
        255,
        0.2
    );
    background:
        rgba(
            255,
            255,
            255,
            0.04
        );
    color: #ffffff;
}

.property-modal-whatsapp:hover {
    transform: translateY(-2px);
    border-color: #25D366;
    background: #25D366;
    color: #ffffff;
}

.property-modal-actions i {
    font-size: 17px;
}


/* =========================================================
   MODAL SCROLLBAR
   ========================================================= */

.property-modal-card::-webkit-scrollbar {
    width: 6px;
}

.property-modal-card::-webkit-scrollbar-track {
    background: #091225;
}

.property-modal-card::-webkit-scrollbar-thumb {
    background: rgba(
        212,
        175,
        55,
        0.5
    );
}

.property-modal-card::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .property-image-wrap {
        height: 240px;
    }

    .property-card-content {
        min-height: 175px;
        padding: 20px;
    }

    .property-card-title {
        font-size: 21px;
    }

    .property-details-modal {
        padding: 12px;
    }

    .property-modal-card {
        max-height: calc(100vh - 24px);
    }

    .property-modal-image-wrap {
        height: 220px;
    }

    .property-modal-content {
        padding: 24px 20px;
    }

    .property-modal-heading h2 {
        font-size: 27px;
    }

    .property-modal-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .property-modal-price strong {
        text-align: left;
        font-size: 18px;
    }

    .property-modal-info-grid {
        grid-template-columns:
            1fr;
    }

    .property-modal-actions {
        grid-template-columns:
            1fr;
    }

    .property-modal-close {
        top: 12px;
        right: 12px;
    }

}


@media (max-width: 420px) {

    .property-image-wrap {
        height: 210px;
    }

    .property-modal-image-wrap {
        height: 190px;
    }

    .property-modal-heading h2 {
        font-size: 24px;
    }

    .property-modal-content {
        padding: 20px 16px;
    }

}