/* =========================================================
   MUVA AT COMPASS PROPERTIES
   PREMIUM REAL ESTATE WEBSITE
   STYLE.CSS
   UPDATED PREMIUM NAVY + GOLD COLOR SYSTEM
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --deep-navy: #0E1A32;
    --gold: #D4AF37;
    --gold-light: #E5C65C;
    --gold-soft: rgba(212, 175, 55, 0.14);

    --soft-gray: #E5E5E5;
    --warm-white: #F8F6F1;
    --charcoal: #1A1F2B;
    --white: #FFFFFF;

    --text: #FFFFFF;
    --text-dark: #1A1F2B;
    --text-soft: #666D78;
    --text-light: #9AA0AA;

    --border: rgba(14, 26, 50, 0.12);
    --border-light: rgba(255, 255, 255, 0.12);

    --body-font: "DM Sans", sans-serif;
    --display-font: "Playfair Display", serif;

    --container: 1240px;
    --transition: 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--body-font);
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   GLOBAL SECTION
========================================================= */

.section {
    padding: 130px 0;
}


/* =========================================================
   SECTION KICKER
========================================================= */

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-kicker > span {
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-kicker.light {
    color: var(--gold);
}

.section-kicker.light > span {
    background: var(--gold);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 0;

    background: rgba(14, 26, 50, 0.12);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.header.scrolled {
    height: 70px;

    background: rgba(14, 26, 50, 0.97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.18);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--white);

    flex-shrink: 0;
}

.logo-placeholder {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.75);

    color: var(--gold);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;

    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text > span {
    color: var(--white);

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
}

.brand-text small {
    margin-top: 5px;

    color: var(--gold);

    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    font-weight: 500;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   NAV WHATSAPP
========================================================= */

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 40px;

    padding: 0 16px;

    background: var(--gold);
    color: var(--deep-navy);

    font-size: 10px;
    font-weight: 700;

    transition:
        background var(--transition),
        transform var(--transition);
}

.nav-whatsapp i {
    font-size: 16px;
}

.nav-whatsapp:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    background: transparent;
    color: var(--white);

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(14, 26, 50, 0.94) 0%,
            rgba(14, 26, 50, 0.78) 42%,
            rgba(14, 26, 50, 0.30) 100%
        ),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=90")
        center center / cover no-repeat;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(14, 26, 50, 0.30) 0%,
            transparent 35%,
            rgba(14, 26, 50, 0.62) 100%
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 110px;
    padding-bottom: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 790px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

.hero-eyebrow > span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    max-width: 820px;

    font-family: var(--display-font);

    font-size: clamp(58px, 7.4vw, 105px);
    font-weight: 500;

    line-height: 0.94;
    letter-spacing: -4px;

    margin-bottom: 30px;
}

.hero h1 em {
    display: block;

    color: var(--gold);

    font-style: italic;
    font-weight: 500;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 510px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;
    line-height: 1.85;

    margin-bottom: 37px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons,
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 23px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn i {
    font-size: 16px;
}


/* PRIMARY */

.btn-primary {
    background: var(--gold);
    color: var(--deep-navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}


/* OUTLINE */

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--deep-navy);
    border-color: var(--white);

    transform: translateY(-3px);
}


/* LIGHT */

.btn-light {
    background: var(--warm-white);
    color: var(--deep-navy);
}

.btn-light:hover {
    background: var(--gold);
    transform: translateY(-3px);
}


/* OUTLINE LIGHT */

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--deep-navy);
    border-color: var(--white);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   HERO LOCATION
========================================================= */

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-location > i {
    color: var(--gold);
    font-size: 20px;
}

.hero-location > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-location span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.hero-location strong {
    color: rgba(255, 255, 255, 0.90);

    font-size: 10px;
    letter-spacing: 0.8px;
}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 11px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition: color var(--transition);
}

.hero-scroll i {
    color: var(--gold);
    font-size: 16px;
}

.hero-scroll:hover {
    color: var(--white);
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    background: var(--warm-white);
}

.intro-grid {
    display: grid;

    grid-template-columns: 0.55fr 1.7fr;

    gap: 80px;
}


/* =========================================================
   SECTION NUMBER
========================================================= */

.section-number {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding-top: 8px;

    color: var(--text-light);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-number > span {
    color: var(--gold);
}

.section-number p {
    writing-mode: vertical-rl;
    transform: rotate(180deg);

    letter-spacing: 2.5px;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.intro-content {
    max-width: 850px;
}

.intro-content h2 {
    margin: 20px 0 28px;

    font-family: var(--display-font);

    font-size: clamp(45px, 5vw, 73px);
    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -2.5px;

    color: var(--deep-navy);
}

.intro-content h2 em {
    color: var(--gold);
    font-style: italic;
}

.intro-content > p {
    max-width: 670px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 30px;
}


/* =========================================================
   TEXT LINK
========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;

    color: var(--deep-navy);

    transition:
        gap var(--transition),
        color var(--transition);
}

.text-link i {
    color: var(--gold);
    font-size: 16px;
}

.text-link:hover {
    gap: 16px;
    color: var(--gold);
}


/* =========================================================
   PROPERTIES
========================================================= */

.properties {
    background: var(--white);
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 58px;
}

.section-header h2 {
    margin-top: 17px;

    font-family: var(--display-font);

    font-size: clamp(45px, 5vw, 70px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -2.5px;

    color: var(--deep-navy);
}

.section-header h2 em {
    color: var(--gold);
    font-style: italic;
}

.section-header > p {
    max-width: 355px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   PROPERTY GRID
========================================================= */

.property-grid {
    display: grid;

    grid-template-columns: 1.25fr 1fr;

    gap: 24px;
}


/* =========================================================
   PROPERTY CARD
========================================================= */

.property-card {
    background: var(--warm-white);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.property-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 70px rgba(14, 26, 50, 0.13);
}


/* =========================================================
   PROPERTY IMAGE
========================================================= */

.property-image {
    position: relative;

    height: 420px;

    overflow: hidden;

    background: var(--deep-navy);
}

.property-card-large .property-image {
    height: 520px;
}


/* =========================================================
   PROPERTY IMAGE ONE
========================================================= */

.property-image-one {
    background:
        linear-gradient(
            rgba(14, 26, 50, 0.18),
            rgba(14, 26, 50, 0.18)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1500&q=90")
        center / cover no-repeat;

    transition: transform 0.8s ease;
}


/* =========================================================
   PROPERTY IMAGE TWO
========================================================= */

.property-image-two {
    background:
        linear-gradient(
            rgba(14, 26, 50, 0.18),
            rgba(14, 26, 50, 0.18)
        ),
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1500&q=90")
        center / cover no-repeat;

    transition: transform 0.8s ease;
}

.property-card:hover .property-image-one,
.property-card:hover .property-image-two {
    transform: scale(1.02);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.property-image-placeholder {
    position: absolute;
    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 9px;

    background: var(--deep-navy);

    color: rgba(255, 255, 255, 0.45);

    font-size: 8px;
    letter-spacing: 2px;
}

.property-image-placeholder i {
    color: var(--gold);
    font-size: 32px;
}


/* =========================================================
   PROPERTY LOCATION BADGE
========================================================= */

.property-location {
    position: absolute;

    top: 22px;
    left: 22px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 10px 13px;

    background: rgba(14, 26, 50, 0.82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: var(--white);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.property-location i {
    color: var(--gold);
    font-size: 13px;
}


/* =========================================================
   PROPERTY NUMBER
========================================================= */

.property-number {
    position: absolute;

    right: 24px;
    bottom: 20px;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--display-font);

    font-size: 43px;
    font-style: italic;

    line-height: 1;
}


/* =========================================================
   PROPERTY DETAILS
========================================================= */

.property-details {
    padding: 31px 30px 35px;
}

.property-category {
    display: block;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 12px;
}

.property-details h3 {
    color: var(--deep-navy);

    font-family: var(--display-font);

    font-size: 28px;
    font-weight: 500;

    line-height: 1.15;

    margin-bottom: 12px;
}

.property-details > p {
    max-width: 500px;

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.75;

    margin-bottom: 24px;
}


/* =========================================================
   PROPERTY LINK
========================================================= */

.property-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--deep-navy);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        gap var(--transition),
        color var(--transition);
}

.property-link i {
    color: var(--gold);
    font-size: 16px;
}

.property-link:hover {
    gap: 16px;
    color: var(--gold);
}


/* =========================================================
   COMMERCIAL BANNER
========================================================= */

.commercial-banner {
    position: relative;

    min-height: 310px;

    display: flex;
    align-items: center;

    overflow: hidden;

    margin-top: 24px;

    padding: 50px 60px;

    background:
        linear-gradient(
            105deg,
            var(--deep-navy) 0%,
            var(--charcoal) 100%
        );

    color: var(--white);
}


/* =========================================================
   COMMERCIAL CONTENT
========================================================= */

.commercial-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.commercial-content h3 {
    margin: 17px 0;

    font-family: var(--display-font);

    font-size: clamp(35px, 4vw, 55px);
    font-weight: 500;

    line-height: 1.04;
    letter-spacing: -1.5px;
}

.commercial-content h3 em {
    color: var(--gold);

    font-style: italic;
}

.commercial-content > p {
    max-width: 570px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;
    line-height: 1.75;

    margin-bottom: 25px;
}


/* =========================================================
   COMMERCIAL DECORATION
========================================================= */

.commercial-decoration {
    position: absolute;

    right: -80px;
    top: 50%;

    width: 450px;
    height: 450px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.20);

    border-radius: 50%;

    transform: translateY(-50%);
}

.commercial-decoration::before,
.commercial-decoration::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, 0.15);
}

.commercial-decoration::before {
    width: 310px;
    height: 310px;
}

.commercial-decoration::after {
    width: 170px;
    height: 170px;
}

.commercial-decoration span {
    font-family: var(--display-font);

    color: rgba(212, 175, 55, 0.30);

    font-size: 72px;
    font-style: italic;
}


/* =========================================================
   LOCATIONS
========================================================= */

.locations {
    background: var(--warm-white);
}

.locations-header {
    margin-bottom: 55px;
}


/* =========================================================
   LOCATION GRID
========================================================= */

.location-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.location-card {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    color: var(--white);

    display: block;
}


/* =========================================================
   LOCATION IMAGE
========================================================= */

.location-image {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;

    transition:
        transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.kazanchis-image {
    background-image:
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=90");
}

.atlas-image {
    background-image:
        url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1500&q=90");
}

.location-card:hover .location-image {
    transform: scale(1.07);
}


/* =========================================================
   LOCATION OVERLAY
========================================================= */

.location-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(14, 26, 50, 0.10) 0%,
            rgba(14, 26, 50, 0.18) 35%,
            rgba(14, 26, 50, 0.90) 100%
        );
}


/* =========================================================
   LOCATION CONTENT
========================================================= */

.location-content {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.location-content > div {
    padding-left: 0;
}

.location-content p {
    color: rgba(255, 255, 255, 0.58);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 5px;
}

.location-content h3 {
    font-family: var(--display-font);

    font-size: 46px;
    font-weight: 500;

    line-height: 1;
}

.location-number {
    position: absolute;

    left: 0;
    bottom: 80px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.location-arrow {
    width: 49px;
    height: 49px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.38);

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.location-arrow i {
    font-size: 18px;
}

.location-card:hover .location-arrow {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--deep-navy);
}


/* =========================================================
   WHY MUVA
========================================================= */

.why {
    background: var(--deep-navy);
    color: var(--white);
}

.why-grid {
    display: grid;

    grid-template-columns: 0.78fr 1.5fr;

    gap: 90px;
}


/* =========================================================
   WHY HEADING
========================================================= */

.why-heading h2 {
    margin-top: 20px;

    font-family: var(--display-font);

    font-size: clamp(45px, 5vw, 68px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -2.5px;
}

.why-heading h2 em {
    display: block;

    color: var(--gold);

    font-style: italic;
}


/* =========================================================
   WHY CARDS
========================================================= */

.why-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;
}

.why-card {
    position: relative;

    min-height: 255px;

    padding: 35px;

    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);

    transition:
        background var(--transition);
}

.why-card:nth-child(2n) {
    border-right: 0;
}

.why-card:nth-child(3),
.why-card:nth-child(4) {
    border-bottom: 1px solid var(--border-light);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.045);
}


/* =========================================================
   WHY ICON
========================================================= */

.why-icon {
    color: var(--gold);

    font-size: 27px;

    margin-bottom: 28px;
}


/* =========================================================
   WHY NUMBER
========================================================= */

.why-number {
    position: absolute;

    top: 37px;
    right: 35px;

    color: rgba(255, 255, 255, 0.27);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =========================================================
   WHY TITLE
========================================================= */

.why-card h3 {
    color: var(--white);

    margin-bottom: 12px;

    font-family: var(--display-font);

    font-size: 24px;
    font-weight: 500;
}

.why-card > p {
    max-width: 270px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--deep-navy),
            var(--charcoal)
        );
}


/* =========================================================
   ABOUT IMAGE PLACEHOLDER
========================================================= */

.about-image-placeholder {
    position: absolute;
    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 12px;

    color: rgba(255, 255, 255, 0.43);
}

.about-image-placeholder i {
    color: var(--gold);
    font-size: 47px;
}

.about-image-placeholder span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   ABOUT BADGE
========================================================= */

.about-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 125px;
    height: 125px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    border-radius: 50%;

    background: var(--gold);

    color: var(--deep-navy);

    text-align: center;
}

.about-badge > span {
    font-family: var(--display-font);

    font-size: 28px;
    font-style: italic;

    line-height: 1;
}

.about-badge small {
    margin-top: 6px;

    font-size: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    max-width: 580px;
}

.about-content h2 {
    margin: 20px 0 28px;

    font-family: var(--display-font);

    font-size: clamp(43px, 5vw, 64px);
    font-weight: 500;

    line-height: 1.02;
    letter-spacing: -2.5px;

    color: var(--deep-navy);
}

.about-content h2 em {
    display: block;

    color: var(--gold);

    font-style: italic;
}

.about-content > p {
    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.9;

    margin-bottom: 17px;
}


/* =========================================================
   ABOUT CONTACT
========================================================= */

.about-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 36px;
    padding-top: 24px;

    border-top: 1px solid var(--border);
}

.about-contact > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-contact span {
    color: var(--text-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.about-contact strong {
    color: var(--deep-navy);

    font-size: 18px;
}


/* =========================================================
   CIRCLE ARROW
========================================================= */

.circle-arrow {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.circle-arrow i {
    font-size: 18px;
}

.circle-arrow:hover {
    background: var(--gold);

    color: var(--deep-navy);

    transform: rotate(4deg);
}


/* =========================================================
   FINAL CTA
========================================================= */

.cta {
    position: relative;

    overflow: hidden;

    background: var(--deep-navy);

    color: var(--white);

    text-align: center;

    padding: 145px 0;
}


/* =========================================================
   CTA PATTERN
========================================================= */

.cta-pattern {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 650px;
    height: 650px;

    border: 1px solid rgba(212, 175, 55, 0.10);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.cta-pattern::before,
.cta-pattern::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(212, 175, 55, 0.07);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.cta-pattern::before {
    width: 450px;
    height: 450px;
}

.cta-pattern::after {
    width: 850px;
    height: 850px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content .section-kicker {
    justify-content: center;
}

.cta-content h2 {
    max-width: 920px;

    margin: 22px auto;

    font-family: var(--display-font);

    font-size: clamp(49px, 6vw, 83px);
    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -3.5px;
}

.cta-content h2 em {
    color: var(--gold);

    font-style: italic;
}

.cta-content > p {
    max-width: 480px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    line-height: 1.8;
}

.cta-buttons {
    justify-content: center;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--deep-navy);

    color: var(--white);

    padding: 80px 0 25px;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {
    display: grid;

    grid-template-columns: 1.15fr 1fr;

    gap: 100px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo-placeholder {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-brand h3 {
    margin-bottom: 12px;

    font-family: var(--display-font);

    font-size: 27px;
    font-weight: 500;
}

.footer-brand > p {
    max-width: 370px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-columns {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    color: var(--gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;

    margin-bottom: 7px;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.50);

    font-size: 10px;
    line-height: 1.6;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: rgba(255, 255, 255, 0.30);

    font-size: 8px;
    letter-spacing: 0.4px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 13px 17px;

    background: #25D366;

    color: var(--white);

    border-radius: 50px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22);

    font-size: 10px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp i {
    font-size: 20px;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.27);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.property-card,
.location-card,
.why-card,
.about-visual,
.about-content,
.intro-content {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.property-card.revealed,
.location-card.revealed,
.why-card.revealed,
.about-visual.revealed,
.about-content.revealed,
.intro-content.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .nav {
        gap: 21px;
    }

    .hero h1 {
        font-size: 78px;
    }

    .intro-grid {
        gap: 50px;
    }

    .why-grid {
        gap: 50px;
    }

    .about-grid {
        gap: 60px;
    }

    .footer-top {
        gap: 60px;
    }
}


/* =========================================================
   RESPONSIVE — 850px
========================================================= */

@media (max-width: 850px) {

    .section {
        padding: 95px 0;
    }


    /* NAVIGATION */

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;

        top: 72px;
        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 22px;

        background: rgba(14, 26, 50, 0.98);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.25);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .nav-whatsapp {
        margin-top: 15px;
    }


    /* HERO */

    .hero {
        min-height: 850px;
    }

    .hero-container {
        min-height: 850px;

        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(52px, 10vw, 78px);
    }


    /* INTRO */

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-number {
        padding-top: 0;
    }

    .section-number p {
        writing-mode: initial;
        transform: none;
    }


    /* SECTION HEADER */

    .section-header {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }


    /* PROPERTY */

    .property-grid {
        grid-template-columns: 1fr;
    }


    /* LOCATIONS */

    .location-grid {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-content {
        max-width: 700px;
    }


    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;

        gap: 55px;
    }
}


/* =========================================================
   RESPONSIVE — 600px
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 80px 0;
    }


    /* BRAND */

    .brand-text > span {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 6px;
        letter-spacing: 1.3px;
    }

    .logo-placeholder {
        width: 38px;
        height: 38px;
    }


    /* HEADER */

    .header {
        height: 68px;
    }

    .header.scrolled {
        height: 64px;
    }


    /* HERO */

    .hero {
        min-height: 780px;

        background-position: 60% center;
    }

    .hero-container {
        min-height: 780px;

        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 68px);

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 13px;

        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 310px;
    }

    .hero-bottom {
        left: 15px;
        right: 15px;

        bottom: 25px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-location strong {
        font-size: 9px;
    }


    /* INTRO */

    .intro-content h2 {
        font-size: 45px;
    }


    /* SECTION HEADER */

    .section-header h2 {
        font-size: 47px;
    }


    /* PROPERTY */

    .property-image,
    .property-card-large .property-image {
        height: 350px;
    }

    .property-details {
        padding: 26px 22px 30px;
    }

    .property-details h3 {
        font-size: 25px;
    }


    /* COMMERCIAL */

    .commercial-banner {
        padding: 40px 27px;

        min-height: 350px;
    }

    .commercial-decoration {
        right: -210px;

        opacity: 0.55;
    }


    /* LOCATIONS */

    .location-card {
        min-height: 370px;
    }

    .location-content {
        left: 24px;
        right: 24px;

        bottom: 25px;
    }

    .location-content h3 {
        font-size: 39px;
    }


    /* WHY */

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 220px;

        border-right: 0;

        border-bottom:
            1px solid var(--border-light);
    }

    .why-card:nth-child(3),
    .why-card:nth-child(4) {
        border-bottom:
            1px solid var(--border-light);
    }


    /* ABOUT */

    .about-visual {
        min-height: 420px;
    }

    .about-content h2 {
        font-size: 45px;
    }


    /* CTA */

    .cta {
        padding: 100px 0;
    }

    .cta-content h2 {
        font-size: 49px;

        letter-spacing: -2px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 310px;

        margin-inline: auto;
    }


    /* FOOTER */

    .footer {
        padding-top: 65px;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;

        gap: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }


    /* WHATSAPP */

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;

        width: 53px;
        height: 53px;

        display: grid;
        place-items: center;

        padding: 0;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp i {
        font-size: 22px;
    }
}


/* =========================================================
   RESPONSIVE — 400px
========================================================= */

@media (max-width: 400px) {

    .brand-text small {
        display: none;
    }

    .hero h1 {
        font-size: 47px;
    }

    .intro-content h2,
    .section-header h2,
    .about-content h2 {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 43px;
    }

    .location-content h3 {
        font-size: 35px;
    }

    .property-image,
    .property-card-large .property-image {
        height: 315px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   NEW YEAR PROMOTION POPUP
========================================================= */

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.promo-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.promo-card {
    position: relative;
    width: min(680px, 100%);
    min-height: 560px;
    padding: 70px 75px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #101d36 0%,
            #0e1a32 55%,
            #091225 100%
        );
    color: #ffffff;
    border: 1px solid rgba(229, 187, 103, 0.28);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transform: translateY(25px) scale(0.96);
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.promo-modal.active .promo-card {
    transform: translateY(0) scale(1);
}

/* Decorative circles */

.promo-decoration {
    position: absolute;
    border: 1px solid rgba(229, 187, 103, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.promo-decoration-one {
    width: 420px;
    height: 420px;
    right: -230px;
    top: -210px;
}

.promo-decoration-two {
    width: 620px;
    height: 620px;
    right: -330px;
    top: -310px;
    border-color: rgba(229, 187, 103, 0.07);
}

/* Close */

.promo-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;

    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.75);

    font-size: 21px;
    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.promo-close:hover {
    background: #e5bb67;
    border-color: #e5bb67;
    color: #0e1a32;
    transform: rotate(90deg);
}

/* Content */

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.promo-eyebrow {
    display: block;
    margin-bottom: 18px;

    color: #e5bb67;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.promo-divider {
    width: 42px;
    height: 1px;
    margin-bottom: 25px;
    background: #e5bb67;
}

.promo-small-title {
    display: block;
    margin-bottom: 14px;

    color: rgba(255,255,255,0.62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.promo-content h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 6vw, 66px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.promo-content h2 span {
    color: #e5bb67;
}

.promo-description {
    max-width: 500px;
    margin-top: 25px;

    color: rgba(255,255,255,0.66);
    font-size: 14px;
    line-height: 1.85;
}

/* Date */

.promo-date {
    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-top: 28px;
    padding-left: 18px;

    border-left: 1px solid #e5bb67;
}

.promo-date span {
    color: #e5bb67;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.promo-date strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Buttons */

.promo-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
}

.promo-btn {
    min-height: 50px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #e5bb67;
    color: #0e1a32;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.promo-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.promo-btn:hover {
    background: #f0ca7c;
    transform: translateY(-2px);
}

.promo-btn:hover i {
    transform: translateX(4px);
}

.promo-text-btn {
    padding: 8px 0;

    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.55);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;

    cursor: pointer;
    transition: color 0.3s ease;
}

.promo-text-btn:hover {
    color: #ffffff;
}

/* Mobile */

@media (max-width: 600px) {

    .promo-modal {
        padding: 15px;
    }

    .promo-card {
        min-height: auto;
        padding: 60px 28px 35px;
    }

    .promo-content h2 {
        font-size: 43px;
    }

    .promo-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .promo-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .promo-btn {
        width: 100%;
    }

    .promo-text-btn {
        margin-left: 3px;
    }

    .promo-close {
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .promo-modal,
    .promo-card,
    .promo-close,
    .promo-btn,
    .promo-btn i {
        transition: none !important;
    }
}
/* =========================================================
   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;
    }
}
