:root {
    --brand-primary: #000000;
    --brand-secondary: #ffffff;
    --accent-bg: #b9d7ea;
    --surface-light: #f9f9f9;
    --text-main: #000000;
    --text-muted: #666666;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --radius-outer: 40px;
    --radius-inner: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--accent-bg);
    color: var(--text-main);
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* CONTAINER FRAME WORK */
.hero-viewport {
    flex: 1;
    background-color: var(--surface-light);
    border-radius: var(--radius-outer);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* HEADER COMPONENT */
.main-header {
    width: 100%;
    margin-bottom: 20px;
}

.header-container {
    background-color: var(--surface-light);
    border-radius: 50px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.logo-img {
    height: 32px;
    width: auto;
}

.center-nav {
    background-color: #000;
    border-radius: 40px;
    padding: 6px;
    display: flex;
    gap: 5px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
}

.nav-link.active,
.nav-link:hover {
    background-color: #fff;
    color: #000;
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 12px;
}

.util-btn {
    background: #f0f0f0;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f0f0;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 4px 4px 20px;
    border-radius: 30px;
}

.phone-icon-circle {
    background: #000;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
}

/* HERO COMPONENT ELEMENTS */
.hero-outer-frame {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.giant-main-title {
    font-size: 9.8vw;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -4px;
    margin: 0;
    color: #000;
}

.sub-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.meta-social-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

.social-pills a {
    width: 38px;
    height: 38px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    margin-right: 5px;
}

.mini-avatar-stack-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-indicator.green {
    background: #2ec4b6;
}

.hero-image-card {
    position: relative;
    width: 100%;
    border-radius: var(--radius-inner);
    overflow: hidden;
    margin-top: 20px;
    flex-grow: 1;
    min-height: 480px;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-badge-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 380px;
    top: 30px;
    left: 30px;
}

.sparkle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.floating-badge-pill p {
    font-size: 0.68rem;
    font-weight: 700;
    color: #000;
}

.metric-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 24px;
    width: 220px;
    text-decoration: none;
    color: inherit;
}

.reviews-card {
    bottom: 30px;
    right: 270px;
}

.inventory-card {
    bottom: 30px;
    right: 30px;
}

.metric-glass-card h3 {
    font-size: 2rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.metric-glass-card p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.avatar-group img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: -8px;
    border: 2px solid #fff;
    object-fit: cover;
}

.mini-card-thumb {
    width: 100%;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}

.mini-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrow-action-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.bottom-left-deco {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
}

/* PROPERTIES SECTIONS */
.section-header {
    text-align: center;
    margin: 60px auto 30px auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #eef3f7;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.properties-grid,
.properties-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card,
.catalog-property-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.property-img-wrapper,
.catalog-img-frame {
    position: relative;
    height: 240px;
}

.property-img-wrapper img,
.catalog-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-tag,
.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.sale {
    background: #fff;
}

.status-badge.development {
    background: #b9d7ea;
}

.property-info,
.catalog-card-details {
    padding: 24px;
}

.property-loc,
.card-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 10px 0;
}

.property-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    font-size: 0.8rem;
}

/* CATALOG ONLY SPECIFICS */
.catalog-header-block {
    margin: 20px 0 40px 0;
}

.catalog-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.filter-toolbar-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.filter-group-buttons {
    display: flex;
    gap: 10px;
}

.filter-pill {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.view-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #f5f5f5;
    color: #000;
    text-decoration: none;
    padding: 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 600;
}

.view-details-btn:hover {
    background: #000;
    color: #fff;
}

/* CONTACT CONSOLE COMPONENT */
.contact-section {
    background: #fff;
    border-radius: var(--radius-inner);
    padding: 50px;
    margin-top: 40px;
}

.contact-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contact-text-side h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.method-item i {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-item a {
    color: var(--text-main);
    text-decoration: none;
}

.method-item a:hover {
    text-decoration: underline;
}

.minimalist-lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-row {
    display: flex;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    outline: none;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #000;
}

.form-submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* FOOTER COMPONENT */
.main-footer {
    background-color: #000;
    color: #fff;
    border-radius: var(--radius-outer);
    padding: 60px 40px 30px 40px;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

.footer-brand-column h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-address {
    font-size: 0.85rem;
    color: #666;
}

.footer-links-column h4,
.footer-contact-column h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
}

.footer-links-column a,
.footer-contact-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-links-column a:hover,
.footer-contact-column a:hover {
    color: #fff;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 0.8rem;
    color: #555;
}

.footer-bottom-bar a {
    text-decoration: none;
    color: inherit;
}

.footer-bottom-bar a:hover {
    color: #fff;
}

/* RESPONSIVE LAYOUT MATRIX CONTROLS */
@media (max-width: 992px) {
    .center-nav {
        display: none;
    }

    .center-nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 30px;
        right: 30px;
        background: #000;
        padding: 20px;
        border-radius: 20px;
        z-index: 200;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .hero-viewport {
        padding: 20px;
        border-radius: var(--radius-inner);
    }

    .giant-main-title {
        font-size: 13vw;
        letter-spacing: -2px;
    }

    .hero-image-card {
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
    }

    .top-left-pill {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: auto;
    }

    .metric-glass-card {
        position: relative;
        width: 100%;
        bottom: auto !important;
        right: auto !important;
        margin-top: 15px;
    }

    .bottom-left-deco {
        display: none;
    }

    .form-input-row {
        flex-direction: column;
    }

    .contact-section {
        padding: 24px;
    }
}