/**
 * Single Unit Page Styles
 * Version: 4.9.1 - One Line Horizontal Badges Fix
 * Based on: v4.9 (Paul's original)
 * 
 * CHANGED:
 * - Badges now stay in ONE horizontal line (no wrap)
 * - Added overflow-x: auto for mobile scroll
 * - Added flex-shrink: 0 to prevent badge shrinking
 * 
 * Last Updated: February 2025
 */

:root {
    --color-primary: #5A4F42;
    --color-secondary: #928572;
    --color-700: #766C61;
    --color-800: #483F35;
    --color-400: #CCC8C0;
    --color-300: #E8E5DF;
    --color-200: #EFEDEB;
    --color-100: #FAF9F7;
    --color-white: #FFFFFF;
    --color-background: #FAF9F7;
    --font-heading: 'Sofia Pro', sans-serif;
    --font-body: 'Afacad Flux', sans-serif;
    --content-max-width: 1200px;
    --page-max-width: 1440px;
}

/* =========================================
   BREADCRUMB SECTION - Full Width BG
   ========================================= */
.unit-breadcrumb-section {
    width: 100%;
    padding: 14px 0;
    background: var(--color-200);
}

.breadcrumb-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
}

@media (min-width: 1441px) {
    .breadcrumb-inner {
        max-width: var(--page-max-width);
    }
}

.unit-breadcrumb-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.breadcrumb-link,
.breadcrumb-separator,
.breadcrumb-current {
    color: var(--color-primary);
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 300;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
    color:  #928572!important;
}

.breadcrumb-current {
    font-weight: 400;
}

/* =========================================
   PROPERTY HEADER SECTION - Full Width BG
   ========================================= */
.property-header-section {
    width: 100%;
    padding: 48px 0;
    background: var(--color-100);
}

.property-header-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

@media (min-width: 1441px) {
    .property-header-container {
        max-width: var(--page-max-width);
    }
}

.property-header-left {
    flex: 1 1 auto;
    max-width: 460px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.property-header-right {
    flex: 0 0 auto;
    min-width: 384px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
}

/* =========================================
   VIEW COMMUNITY LINK - v4.9
   Text with SVG Arrow, NO HOVER
   ========================================= */
.view-community-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.view-community-text {
    color: var(--color-primary);
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: capitalize;
}

.view-community-link svg {
    flex-shrink: 0;
}

/* =========================================
   BADGES - ONE LINE HORIZONTAL ONLY (v4.9.1 FIX)
   ========================================= */
.property-badges-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.property-badges-container::-webkit-scrollbar {
    display: none;
}

.property-badge-pill {
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.badge-move-in-ready {
    background: #6A8375;
}

/* For Sale - same as Move-in Ready */
.badge-for-sale {
    background: #6A8375;
}

.badge-plan-ready {
    background: #6B6D80;
}

.badge-in-construction {
    background: var(--color-white);
    outline: 1px var(--color-primary) solid;
    outline-offset: -1px;
}

.badge-estimated {
    background: transparent !important;
    outline: 1px solid var(--color-secondary);
    outline-offset: -1px;
    border-radius: 50px;
    border: none !important;
}

/* Extra specificity override */
.property-badge-pill.badge-estimated {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
}

/* Estimated Completion - Label (normal weight) */
.badge-estimated .badge-label {
    color: var(--color-secondary);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    white-space: nowrap;
}

/* Estimated Completion - Date (medium weight) */
.badge-estimated .badge-date {
    color: var(--color-secondary);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    white-space: nowrap;
}

.badge-promo {
    background: var(--color-white);
    outline: 1px #E8E5DF solid;
    outline-offset: -1px;
}

.badge-in-contract,
.badge-reserved {
    background: #666666;
}

.badge-sold {
    background: #EEEEEE;
}

.badge-coming-soon {
    background: #EEEEEE;
}
/* ===== COMING SOON BADGE ONLY ===== */
.property-badge-pill.badge-coming-soon {
    background: #EEEEEE !important;
    border-radius: 50px !important;
    /*outline: 0px solid #CCC8C0 !important;
    outline-offset: -1px !important;*/
     border: none !important;
}

.property-badge-pill.badge-coming-soon .property-badge-text-dark {
    color: #5A4F42 !important;
    font-size: 16px !important;
    font-family: var(--font-body) !important;
    font-weight: 300 !important;
}

/* Default fallback badge */
.badge-default {
    background: #EEEEEE;
}

.property-badge-text {
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 300;
    white-space: nowrap;
}

.property-badge-text-dark {
    color: var(--color-primary);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 300;
    white-space: nowrap;
}

.property-badge-text-dark-bold {
    color: var(--color-primary);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    white-space: nowrap;
}

/* Estimated Completion Badge Text - Secondary color, 500 weight */
/* Use this for the ENTIRE badge text (label + date) */
.property-badge-text-secondary {
    color: var(--color-secondary);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    white-space: nowrap;
}

/* Force ALL text inside estimated badge to be secondary color */
.badge-estimated * {
    color: var(--color-secondary) !important;
}

.badge-estimated .property-badge-text-dark,
.badge-estimated .property-badge-text-dark-bold {
    color: var(--color-secondary) !important;
}

/* Title + Address */
.property-header-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-name {
    color: var(--color-primary);
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0;
    word-wrap: break-word;
}

.property-address {
    color: var(--color-700);
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 300;
    word-wrap: break-word;
}

/* Price */
.property-price-section {
    align-self: stretch;
}

.price-amount {
    text-align: right;
    color: var(--color-primary);
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 400;
}

/* =========================================
   ACTION BUTTONS
   ========================================= */
.property-actions {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

.property-action-btn {
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
}

/* Check the Community Button */
.quaternary-btn {
    background: var(--color-secondary);
    color: var(--color-white);
}

.quaternary-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Schedule a Tour Button */
.primary-btn {
    background: #5A4F42!important;
    color: #FFFFFF!important;
}

.primary-btn:hover {
    background: #928572!important;
    color: #FFFFFF!important;
}

/* Download Brochure Button */
.secondary-btn {
    background: #FFFFFF!important;
    color: #2A2A2A!important;
    border-color:1px solid #2A2A2A!important;
    /*outline-offset: -1px;*/
}

.secondary-btn:hover {
    background: #5A4F42!important;
    color:  #FFFFFF!important;
}

.btn-icon .material-symbols-outlined {
    font-size: 20px;
}

/* =========================================
   HERO IMAGE SECTION - FULL WIDTH EDGE TO EDGE
   ========================================= */
.property-hero-section {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
}

.property-hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 646;
    max-height: 80vh;
    min-height: 400px;
    overflow: hidden;
    display: block;
}

.property-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Hero Placeholder */
.hero-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #F5F3F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder-content {
    text-align: center;
}

.hero-placeholder-content .material-symbols-outlined {
    font-size: 80px;
    color: var(--color-400);
    margin-bottom: 20px;
}

.hero-placeholder-text {
    color: var(--color-700);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
}

/* CTA Button on Hero */
.hero-cta-button {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 1000;
    pointer-events: all;
    display: block;
}

.hero-cta-closed {
    width: 54px;
    height: 255px;
    background: var(--color-primary);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 8px 0 0 8px;
}

.hero-cta-closed:hover {
    background: var(--color-800);
    box-shadow: -6px 6px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.cta-icon {
    color: var(--color-white);
    font-size: 24px;
}

.cta-text-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    text-align: center;
}

.hero-cta-expanded {
    width: 211px;
    min-height: 366px;
    background: var(--color-primary);
    padding: 20px 15px;
    box-shadow: -6px 6px 30px rgba(0, 0, 0, 0.4);
    border-radius: 8px 0 0 8px;
}

.cta-content {
    width: 181px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--color-white);
}

.cta-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-icon-expanded {
    font-size: 24px;
    color: var(--color-white);
    cursor: pointer;
}

.cta-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-white);
    margin: 0;
}

.cta-agent-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.agent-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
}

.agent-title,
.agent-company,
.agent-phone {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-white);
}

.cta-contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.cta-contact-button:hover {
    opacity: 0.9;
}

.cta-button-icon {
    width: 35px;
    height: 35px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   SPECIFICATIONS SECTION - MATCHING SINGLE-PROPERTY.PHP
   2 Rows x 4 Columns Layout with 112px Row Gap
   ========================================= */
.specifications-section {
    width: 100%;
    padding: 40px 0;
    background: var(--color-100);
    display: flex;
    justify-content: center;
}

.specifications-grid {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 112px;
    column-gap: 0;
    justify-items: start;
}

@media (min-width: 1441px) {
    .specifications-grid {
        max-width: var(--page-max-width);
    }
}

.spec-card {
    width: 160px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
}

.spec-card-icon {
    font-size: 24px !important;
    color: var(--color-400) !important;
    flex-shrink: 0;
    display: block !important;
    width: 24px;
    height: 24px;
}

.spec-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.spec-card-label {
    color: var(--color-700);
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    align-self: stretch;
}

.spec-card-value {
    color: var(--color-primary);
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 500;
    align-self: stretch;
}

/* =========================================
   PHOTO GALLERY SECTION
   ========================================= */
.gallery-section {
    width: 100%;
    padding: 80px 0;
    background: var(--color-white);
}

.gallery-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
}

@media (min-width: 1441px) {
    .gallery-inner {
        max-width: var(--page-max-width);
    }
}

.section-title {
    color: var(--color-primary);
    font-size: 30px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0 0 28px 0;
    text-align: left;
}

.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gallery-row-full {
    width: 100%;
}

.gallery-row-full img {
    width: 100%;
    height: 654px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-row-full img:hover {
    opacity: 0.9;
}

.gallery-row-two {
    display: flex;
    gap: 28px;
}

.gallery-row-two img {
    width: calc(50% - 14px);
    height: 319px;
    object-fit: cover;
    flex: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-row-two img:hover {
    opacity: 0.9;
}

.gallery-last-image-wrapper {
    position: relative;
    width: calc(50% - 14px);
    height: 319px;
    flex: 1;
}

.gallery-last-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none;
}

.gallery-see-all-btn {
    padding: 10px 24px;
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    border-radius: 50px;
    outline: 1px solid var(--color-primary);
    outline-offset: -1px;
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 400;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.gallery-see-all-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-image-container {
    max-width: 1200px;
    max-height: 800px;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 800px;
    object-fit: contain;
}

.lightbox-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.lightbox-nav-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-nav-btn:hover {
    transform: scale(1.1);
}

.lightbox-nav-btn .material-symbols-outlined {
    font-size: 40px;
    color: var(--color-primary);
}

.lightbox-counter {
    display: flex;
    gap: 15px;
}

.lightbox-counter span {
    color: var(--color-primary);
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 400;
}

.lightbox-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-close-btn .material-symbols-outlined {
    font-size: 40px;
    color: var(--color-primary);
}

/* =========================================
   FLOOR PLAN SECTION
   ========================================= */
.floorplan-section {
    width: 100%;
    padding: 56px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-300);
}

.floorplan-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
}

@media (min-width: 1441px) {
    .floorplan-inner {
        max-width: var(--page-max-width);
    }
}

.floorplan-display-wrapper {
    width: 100%;
    padding: 14px 240px;
    background: var(--color-white);
    outline: 1px var(--color-400) solid;
    outline-offset: -1px;
    display: flex;
    justify-content: center;
}

.floorplan-image-bordered {
    width: 593px;
    outline: 1px var(--color-700) solid;
    outline-offset: -1px;
}

.floorplan-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   VIRTUAL TOUR SECTION
   ========================================= */
.tour-section {
    width: 100%;
    padding: 80px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-300);
}

.tour-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
}

@media (min-width: 1441px) {
    .tour-inner {
        max-width: var(--page-max-width);
    }
}

.tour-container {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    position: relative;
    background: #000000;
}

.tour-content {
    width: 100%;
    height: 100%;
}

.tour-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tour-controls {
    width: 144px;
    height: 40px;
    padding: 5px 6px;
    position: absolute;
    bottom: 79px;
    right: 53px;
    background: rgba(48, 48, 48, 0.60);
    border-radius: 50px;
    backdrop-filter: blur(2px);
    display: flex;
    gap: 3px;
    z-index: 10;
}

.tour-control-btn {
    padding: 5px 10px;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tour-control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tour-control-btn .material-symbols-outlined {
    font-size: 20px;
    color: var(--color-white);
}

/* =========================================
   MAP SECTION - LEAFLET + OPENSTREETMAP
   ========================================= */
.map-section {
    width: 100%;
    padding: 80px 0;
    padding-bottom: 0;
    margin-bottom: 54px;
    background: var(--color-white);
}

.map-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 120px;
}

@media (min-width: 1441px) {
    .map-inner {
        max-width: var(--page-max-width);
    }
}

.map-container-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-300);
    background: transparent;
}

.leaflet-map-container {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #e8e8e8;
    display: block;
}

.leaflet-map-container .leaflet-container {
    width: 100% !important;
    height: 100% !important;
}

.custom-map-marker {
    background: transparent !important;
    border: none !important;
}

.marker-pin {
    width: 28px;
    height: 28px;
    background: #778869;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 3px 5px 6px 2px rgba(0, 0, 0, 0.40);
}

.map-zoom-controls {
    position: absolute;
    bottom: 49px;
    right: 33px;
    width: 40px;
    height: 80px;
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.map-zoom-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.map-zoom-btn:hover {
    background: #F5F5F5;
}

.map-zoom-btn .material-symbols-outlined {
    font-size: 20px;
    color: var(--color-primary);
}

.zoom-divider {
    width: 28px;
    height: 1px;
    background: #E5E5E5;
    margin: 0 auto;
}

.leaflet-control-zoom {
    display: none !important;
}

.leaflet-control-attribution {
    display: none !important;
}

.leaflet-tile-pane {
    background: transparent !important;
}

.leaflet-tile {
    image-rendering: -webkit-optimize-contrast;
}

/* =========================================
   CTA BANNER SECTION - WHITE OUTER, BEIGE INNER
   ========================================= */
.cta-banner-section {
    width: 100%;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    padding: 0 120px;
}

.cta-banner-container {
    width: 100%;
    max-width: var(--content-max-width);
    height: 320px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    background: var(--color-200);
    overflow: hidden;
}

.cta-banner-accent {
    width: 10px;
    height: 100%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.cta-banner-content {
    flex: 1;
    padding: 0 56px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
}

.cta-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.cta-banner-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-banner-title {
    color: var(--color-primary);
    font-size: 30px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0;
}

.cta-banner-description {
    color: var(--color-primary);
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 300;
    margin: 0;
}

.cta-banner-btn {
    display: inline-flex;
    padding: 10px 24px;
    background: var(--color-white);
    border-radius: 50px;
    outline: 1px solid var(--color-primary);
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-primary);
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-banner-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.cta-banner-btn .material-symbols-outlined {
    font-size: 20px;
}

.cta-banner-image {
    flex: 1;
    max-width: 490px;
    height: 270px;
    object-fit: cover;
}

/* =========================================
   FOOTER SPACER
   ========================================= */
.footer-spacer {
    width: 100%;
    height: 80px;
    background: var(--color-white);
}

/* =========================================
   RESPONSIVE - ULTRA WIDE (1920px+)
   ========================================= */
@media (min-width: 1920px) {
    .property-hero-section {
        width: 100vw;
        max-width: 100vw;
    }
    
    .property-hero-image {
        max-height: 75vh;
        min-height: 500px;
    }
    
    .property-hero-image img {
        object-position: center center;
    }
    
    .cta-banner-section {
        padding: 0 calc((100vw - 1200px) / 2);
    }
}

@media (min-width: 2560px) {
    .property-hero-image {
        max-height: 70vh;
        min-height: 550px;
    }
}

/* =========================================
   RESPONSIVE - TABLET LARGE (1024px - 1439px)
   ========================================= */
@media (max-width: 1439px) {
    .breadcrumb-inner,
    .property-header-container,
    .gallery-inner,
    .floorplan-inner,
    .tour-inner,
    .map-inner {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .cta-banner-section {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .property-header-left {
        max-width: 50%;
    }
    
    .property-header-right {
        min-width: 350px;
    }
    
    .property-name {
        font-size: 32px;
    }
    
    .property-address {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .property-hero-image {
        min-height: 350px;
        max-height: 70vh;
    }
    
    /* SPECIFICATIONS - Tablet Large */
    .specifications-grid {
        padding-left: 80px;
        padding-right: 80px;
        row-gap: 80px;
    }
    
    .spec-card {
        width: 140px;
    }
    
    .floorplan-display-wrapper {
        padding: 14px 120px;
    }
    
    .tour-container {
        height: 550px;
    }
    
    .cta-banner-content {
        padding: 0 40px;
        gap: 60px;
    }
    
    .map-section {
        margin-bottom: 48px;
    }
    
    .map-container-wrapper {
        height: 450px;
    }
    
    .map-zoom-controls {
        bottom: 40px;
        right: 25px;
    }
}

/* =========================================
   RESPONSIVE - TABLET (768px - 1023px)
   ========================================= */
@media (max-width: 1023px) {
    .breadcrumb-inner,
    .property-header-container,
    .gallery-inner,
    .floorplan-inner,
    .tour-inner,
    .map-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .cta-banner-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .property-header-section {
        padding: 40px 0;
    }
    
    .property-header-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .property-header-left {
        width: 100%;
        max-width: 100%;
    }
    
    .property-header-right {
        width: 100%;
        min-width: unset;
        align-items: flex-start;
    }
    
    .view-community-link {
        align-self: flex-start;
    }
    
    .price-amount {
        text-align: left;
    }
    
    .property-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .property-action-btn {
        width: 100%;
    }
    
    .property-hero-image {
        min-height: 300px;
        max-height: 60vh;
    }
    
    /* SPECIFICATIONS - Tablet */
    .specifications-section {
        padding: 30px 0;
    }
    
    .specifications-grid {
        padding-left: 30px;
        padding-right: 30px;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        column-gap: 40px;
        justify-items: start;
    }
    
    .spec-card {
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .gallery-row-full img {
        height: 450px;
    }
    
    .gallery-row-two img,
    .gallery-last-image-wrapper {
        height: 250px;
    }
    
    .floorplan-display-wrapper {
        padding: 14px 60px;
    }
    
    .floorplan-image-bordered {
        width: 100%;
        max-width: 500px;
    }
    
    .tour-container {
        height: 450px;
    }
    
    .tour-controls {
        bottom: 40px;
        right: 30px;
    }
    
    .map-section {
        padding: 60px 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }
    
    .map-container-wrapper {
        height: 400px;
    }
    
    .map-zoom-controls {
        bottom: 35px;
        right: 20px;
    }
    
    /* CTA Banner Tablet */
    .cta-banner-container {
        height: auto;
        flex-direction: column;
        padding: 40px 0;
    }
    
    .cta-banner-accent {
        display: none;
    }
    
    .cta-banner-content {
        flex-direction: column;
        padding: 0 30px;
        gap: 40px;
    }
    
    .cta-banner-text {
        gap: 30px;
        width: 100%;
        align-items: flex-start;
    }
    
    .cta-banner-btn {
        width: auto;
    }
    
    .cta-banner-image {
        width: 100%;
        max-width: 100%;
        max-height: 300px;
    }
}

/* =========================================
   RESPONSIVE - MOBILE (480px - 767px)
   ========================================= */
@media (max-width: 767px) {
    .breadcrumb-inner,
    .property-header-container,
    .gallery-inner,
    .floorplan-inner,
    .tour-inner,
    .map-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cta-banner-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 12px;
    }
    
    .property-header-section {
        padding: 30px 0;
    }
    
    /* BADGES - Mobile (still one line) */
    .property-badges-container {
        gap: 8px;
    }
    
    .property-badge-pill {
        padding: 4px 14px;
    }
    
    .property-badge-text,
    .property-badge-text-dark,
    .property-badge-text-dark-bold,
    .property-badge-text-secondary {
        font-size: 14px;
    }
    
    .view-community-text {
        font-size: 16px;
    }
    
    .view-community-link svg {
        width: 12px;
        height: 12px;
    }
    
    .property-name {
        font-size: 28px;
    }
    
    .property-address {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .property-action-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .property-hero-image {
        min-height: 250px;
        max-height: 50vh;
    }
    
    .hero-cta-closed {
        width: 48px;
        height: 220px;
        padding: 15px 10px;
    }
    
    .cta-text-vertical {
        font-size: 14px;
    }
    
    .hero-cta-expanded {
        width: 200px;
        min-height: 340px;
    }
    
    /* SPECIFICATIONS - Mobile */
    .specifications-section {
        padding: 25px 0;
    }
    
    .specifications-grid {
        padding-left: 20px;
        padding-right: 20px;
        row-gap: 30px;
        column-gap: 20px;
    }
    
    .spec-card {
        width: 100%;
        max-width: none;
        gap: 10px;
    }
    
    .spec-card-icon {
        font-size: 22px !important;
    }
    
    .spec-card-label {
        font-size: 12px;
    }
    
    .spec-card-value {
        font-size: 16px;
    }
    
    .gallery-section,
    .floorplan-section,
    .tour-section {
        padding: 50px 0;
    }
    
    .map-section {
        padding: 50px 0;
        padding-bottom: 0;
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .photo-gallery {
        gap: 20px;
    }
    
    .gallery-row-two {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-row-two img,
    .gallery-last-image-wrapper {
        width: 100%;
        height: 220px;
    }
    
    .gallery-row-full img {
        height: 300px;
    }
    
    .gallery-see-all-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .floorplan-display-wrapper {
        padding: 12px 20px;
    }
    
    .tour-container {
        height: 350px;
    }
    
    .tour-controls {
        width: 120px;
        height: 36px;
        bottom: 20px;
        right: 15px;
    }
    
    .map-container-wrapper {
        height: 350px;
    }
    
    .map-zoom-controls {
        bottom: 30px;
        right: 15px;
        width: 36px;
        height: 72px;
    }
    
    /* CTA Banner Mobile */
    .cta-banner-container {
        padding: 32px 0;
    }
    
    .cta-banner-content {
        padding: 0 20px;
        gap: 32px;
    }
    
    .cta-banner-text {
        gap: 24px;
    }
    
    .cta-banner-info {
        gap: 10px;
    }
    
    .cta-banner-title {
        font-size: 24px;
    }
    
    .cta-banner-description {
        font-size: 16px;
    }
    
    .cta-banner-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .cta-banner-image {
        max-height: 200px;
    }
    
    .footer-spacer {
        height: 60px;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE (375px - 479px)
   ========================================= */
@media (max-width: 479px) {
    .breadcrumb-inner,
    .property-header-container,
    .gallery-inner,
    .floorplan-inner,
    .tour-inner,
    .map-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .cta-banner-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 11px;
    }
    
    .property-header-section {
        padding: 24px 0;
    }
    
    /* BADGES - Small Mobile (still one line) */
    .property-badges-container {
        gap: 6px;
    }
    
    .property-badge-pill {
        padding: 4px 12px;
    }
    
    .property-badge-text,
    .property-badge-text-dark,
    .property-badge-text-dark-bold,
    .property-badge-text-secondary {
        font-size: 13px;
    }
    
    .view-community-text {
        font-size: 15px;
    }
    
    .property-name {
        font-size: 24px;
    }
    
    .property-address {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .property-action-btn {
        font-size: 15px;
        padding: 10px 18px;
    }
    
    .hero-cta-closed {
        width: 44px;
        height: 200px;
        padding: 12px 8px;
    }
    
    .cta-text-vertical {
        font-size: 13px;
    }
    
    /* SPECIFICATIONS - Small Mobile */
    .specifications-section {
        padding: 20px 0;
    }
    
    .specifications-grid {
        padding-left: 16px;
        padding-right: 16px;
        row-gap: 25px;
        column-gap: 15px;
    }
    
    .spec-card {
        gap: 8px;
        min-height: 70px;
    }
    
    .spec-card-icon {
        font-size: 20px !important;
    }
    
    .spec-card-label {
        font-size: 11px;
    }
    
    .spec-card-value {
        font-size: 14px;
    }
    
    .gallery-section,
    .floorplan-section,
    .tour-section {
        padding: 40px 0;
    }
    
    .map-section {
        padding: 40px 0;
        padding-bottom: 0;
        margin-bottom: 28px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .gallery-row-full img {
        height: 250px;
    }
    
    .gallery-row-two img,
    .gallery-last-image-wrapper {
        height: 180px;
    }
    
    .gallery-see-all-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .floorplan-display-wrapper {
        padding: 10px 12px;
    }
    
    .tour-container {
        height: 280px;
    }
    
    .tour-controls {
        width: 100px;
        height: 32px;
        bottom: 15px;
        right: 10px;
    }
    
    .tour-control-btn .material-symbols-outlined {
        font-size: 16px;
    }
    
    .map-container-wrapper {
        height: 300px;
    }
    
    .map-zoom-controls {
        bottom: 25px;
        right: 10px;
        width: 32px;
        height: 64px;
    }
    
    .map-zoom-btn .material-symbols-outlined {
        font-size: 18px;
    }
    
    /* CTA Banner Small Mobile */
    .cta-banner-container {
        padding: 28px 0;
    }
    
    .cta-banner-content {
        padding: 0 16px;
        gap: 24px;
    }
    
    .cta-banner-text {
        gap: 20px;
    }
    
    .cta-banner-info {
        gap: 8px;
    }
    
    .cta-banner-title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .cta-banner-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .cta-banner-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .cta-banner-image {
        max-height: 180px;
    }
    
    .footer-spacer {
        height: 40px;
    }
}

/* =========================================
   RESPONSIVE - IPHONE SE (320px - 374px)
   ========================================= */
@media (max-width: 374px) {
    .breadcrumb-inner,
    .property-header-container,
    .gallery-inner,
    .floorplan-inner,
    .tour-inner,
    .map-inner {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .cta-banner-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 10px;
    }
    
    .property-header-section {
        padding: 20px 0;
    }
    
    .property-header-left {
        gap: 20px;
    }
    
    /* BADGES - iPhone SE (still one line, smallest size) */
    .property-badges-container {
        gap: 5px;
    }
    
    .property-badge-pill {
        padding: 3px 10px;
    }
    
    .property-badge-text,
    .property-badge-text-dark,
    .property-badge-text-dark-bold,
    .property-badge-text-secondary {
        font-size: 12px;
    }
    
    .view-community-text {
        font-size: 14px;
    }
    
    .view-community-link svg {
        width: 11px;
        height: 11px;
    }
    
    .property-name {
        font-size: 20px;
    }
    
    .property-address {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .property-action-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-cta-closed {
        width: 40px;
        height: 180px;
        padding: 10px 6px;
    }
    
    .cta-text-vertical {
        font-size: 11px;
    }
    
    .cta-icon {
        font-size: 20px;
    }
    
    /* SPECIFICATIONS - iPhone SE */
    .specifications-section {
        padding: 16px 0;
    }
    
    .specifications-grid {
        padding-left: 12px;
        padding-right: 12px;
        row-gap: 20px;
        column-gap: 12px;
    }
    
    .spec-card {
        gap: 6px;
        min-height: 60px;
    }
    
    .spec-card-icon {
        font-size: 18px !important;
        width: 18px;
        height: 18px;
    }
    
    .spec-card-label {
        font-size: 10px;
    }
    
    .spec-card-value {
        font-size: 13px;
    }
    
    .gallery-section,
    .floorplan-section,
    .tour-section {
        padding: 32px 0;
    }
    
    .map-section {
        padding: 32px 0;
        padding-bottom: 0;
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .gallery-row-full img {
        height: 200px;
    }
    
    .gallery-row-two img,
    .gallery-last-image-wrapper {
        height: 150px;
    }
    
    .gallery-see-all-btn {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .floorplan-display-wrapper {
        padding: 8px 10px;
    }
    
    .tour-container {
        height: 220px;
    }
    
    .tour-controls {
        width: 90px;
        height: 28px;
        bottom: 10px;
        right: 8px;
    }
    
    .tour-control-btn .material-symbols-outlined {
        font-size: 14px;
    }
    
    .map-container-wrapper {
        height: 260px;
    }
    
    .map-zoom-controls {
        bottom: 20px;
        right: 8px;
        width: 28px;
        height: 56px;
    }
    
    .map-zoom-btn .material-symbols-outlined {
        font-size: 16px;
    }
    
    .zoom-divider {
        width: 20px;
    }
    
    /* CTA Banner iPhone SE */
    .cta-banner-container {
        padding: 24px 0;
    }
    
    .cta-banner-content {
        padding: 0 12px;
        gap: 20px;
    }
    
    .cta-banner-text {
        gap: 16px;
    }
    
    .cta-banner-info {
        gap: 6px;
    }
    
    .cta-banner-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .cta-banner-description {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .cta-banner-btn {
        padding: 8px 16px;
        font-size: 14px;
        gap: 8px;
    }
    
    .cta-banner-btn .material-symbols-outlined {
        font-size: 18px;
    }
    
    .cta-banner-image {
        max-height: 150px;
    }
    
    .footer-spacer {
        height: 32px;
    }
    
    /* Lightbox - iPhone SE */
    .lightbox-controls {
        gap: 30px;
    }
    
    .lightbox-nav-btn .material-symbols-outlined {
        font-size: 30px;
    }
    
    .lightbox-close-btn {
        top: 20px;
        right: 20px;
    }
    
    .lightbox-close-btn .material-symbols-outlined {
        font-size: 30px;
    }
}