* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Loading States */
    .loading-skeleton {
        background: linear-gradient(90deg, var(--charcoal-gray) 25%, var(--medium-gray) 50%, var(--charcoal-gray) 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    .error-state {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: #ff6b7a;
        padding: 1rem;
        border-radius: 15px;
        text-align: center;
    }

    /* Main Layout */
    .property-layout {
        display: grid;
        grid-template-columns: 1fr 400px;
        min-height: calc(100vh - 80px);
        gap: 0;
        background: var(--obsidian-black);
    }

    /* Left Panel */
    .left-panel {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: var(--obsidian-black);
    }

    /* Hero Section */
    .property-hero {
        position: relative;
        height: 500px;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), var(--obsidian-black));
    }

    .hero-gallery {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(145deg, var(--charcoal-gray), var(--medium-gray));
        backdrop-filter: blur(15px);
        border: 1px solid rgba(232, 180, 160, 0.2);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10;
        font-size: 1.1rem;
        color: var(--text-light);
    }

    .gallery-nav:hover {
        background: var(--accent-gradient);
        color: var(--obsidian-black);
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 15px 35px rgba(232, 180, 160, 0.4);
    }

    .gallery-prev { left: 25px; }
    .gallery-next { right: 25px; }

    .gallery-indicators {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .gallery-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
    }

    .gallery-indicator.active {
        background: var(--rose-gold);
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(232, 180, 160, 0.6);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.4));
        padding: 3rem;
        color: var(--text-light);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .property-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.5rem;
        font-weight: 300;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--text-light), var(--rose-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .property-location {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        color: var(--text-muted);
        font-weight: 300;
    }

    .price-badge {
        display: inline-block;
        background: var(--accent-gradient);
        color: var(--obsidian-black);
        padding: 1rem 1rem;
        border-radius: 50px;
        font-size: 1.4rem;
        font-weight: 700;
        box-shadow: 0 15px 35px rgba(232, 180, 160, 0.4);
        align-self: flex-start;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    /* Content Container */
    .content-container {
        flex: 1;
        overflow-y: auto;
        background: linear-gradient(135deg, var(--charcoal-gray), var(--obsidian-black));
        padding: 3rem;
    }

    .content-container::-webkit-scrollbar {
        width: 8px;
    }

    .content-container::-webkit-scrollbar-track {
        background: var(--charcoal-gray);
    }

    .content-container::-webkit-scrollbar-thumb {
        background: var(--accent-gradient);
        border-radius: 4px;
    }

    /* Section Styles */
    .section {
        margin-bottom: 4rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .section.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.2rem;
        font-weight: 400;
        color: var(--rose-gold);
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
        letter-spacing: -0.01em;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background: var(--accent-gradient);
        border-radius: 2px;
    }

    .section-title i {
        color: var(--rose-gold);
        font-size: 1.5rem;
    }
    
    .property-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-muted);
        margin-bottom: 3rem;
        font-weight: 300;
        
    }

    .property-description p {
        margin-bottom: 1.5rem;
        
    }

    .property-description p:last-child {
        margin-bottom: 0;
    }

    /* Property Stats */
    .property-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        background: linear-gradient(145deg, var(--charcoal-gray), var(--medium-gray));
        padding: 1rem 1rem;
        border-radius: 20px;
        text-align: center;
        border: 1px solid rgba(232, 180, 160, 0.1);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .stat-item:hover::before {
        opacity: 0.05;
    }

    .stat-item:hover {
        border-color: rgba(232, 180, 160, 0.3);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(232, 180, 160, 0.2);
    }

    .stat-icon {
        font-size: 2.5rem;
        color: var(--rose-gold);
        margin-bottom: 0.9rem;
        display: block;
        position: relative;
        z-index: 1;
    }

    .stat-value {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: 0.8rem;
        display: block;
        position: relative;
        z-index: 1;
    }

    .stat-label {
        color: var(--text-muted);
        font-size: 1rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        position: relative;
        z-index: 1;
    }

    /* Facilities Grid */
    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .facility-item {
        background: linear-gradient(145deg, var(--charcoal-gray), var(--medium-gray));
        padding: 1.2rem 1.2rem;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1rem;
        border: 1px solid rgba(232, 180, 160, 0.1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        font-weight: 300;
    }

    .facility-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .facility-item:hover::before {
        opacity: 0.1;
    }

    .facility-item:hover {
        color: var(--text-light);
        transform: translateY(-5px);
        border-color: rgba(232, 180, 160, 0.3);
        box-shadow: 0 15px 30px rgba(232, 180, 160, 0.2);
    }

    .facility-icon {
        font-size: 1.5rem;
        color: var(--rose-gold);
        transition: all 0.4s ease;
        width: 24px;
        text-align: center;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .facility-item:hover .facility-icon {
        transform: scale(1.2);
    }

    /* Units Grid */
    .units-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .unit-card {
        background: linear-gradient(145deg, var(--charcoal-gray), var(--medium-gray));
        border-radius: 20px;
        padding: 2.5rem 2rem;
        border: 1px solid rgba(232, 180, 160, 0.1);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .unit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .unit-card:hover::before {
        opacity: 0.03;
    }

    .unit-card:hover {
        border-color: rgba(232, 180, 160, 0.3);
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(232, 180, 160, 0.2);
    }

    .unit-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(232, 180, 160, 0.1);
        position: relative;
        z-index: 1;
    }

    .unit-type {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-light);
        letter-spacing: -0.01em;
    }

    .unit-price {
        background: var(--accent-gradient);
        color: var(--obsidian-black);
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .unit-details {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 1.5rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .unit-detail {
        text-align: center;
        padding: 1.5rem 1rem;
        background: linear-gradient(145deg, var(--medium-gray), var(--light-gray));
        border-radius: 12px;
        transition: all 0.4s ease;
        border: 1px solid rgba(232, 180, 160, 0.05);
    }

    .unit-card:hover .unit-detail {
        background: linear-gradient(145deg, var(--light-gray), rgba(232, 180, 160, 0.1));
        border-color: rgba(232, 180, 160, 0.2);
    }

    .unit-detail-value {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--rose-gold);
        margin-bottom: 0.5rem;
        display: block;
    }

    .unit-detail-label {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 300;
    }

    .unit-action {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--rose-gold);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .unit-card:hover .unit-action {
        transform: translateX(10px);
        color: var(--text-light);
    }

    /* Right Sidebar */
    .sidebar {
        background: linear-gradient(180deg, var(--charcoal-gray), var(--medium-gray));
        display: flex;
        flex-direction: column;
        border-left: 1px solid rgba(232, 180, 160, 0.1);
        overflow-y: auto;
    }

    .sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar::-webkit-scrollbar-track {
        background: var(--charcoal-gray);
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: var(--accent-gradient);
        border-radius: 3px;
    }

    .sidebar-card {
        padding: 2.5rem 2rem;
        border-bottom: 1px solid rgba(232, 180, 160, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .sidebar-card:last-child {
        border-bottom: none;
    }

    .sidebar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .sidebar-card:hover::before {
        opacity: 0.02;
    }

    /* Contact Card */
    .contact-card {
        margin-top: 18%;
        text-align: center;
        background: linear-gradient(145deg, rgba(232, 180, 160, 0.05), rgba(244, 208, 63, 0.05));
        position: relative;
    }

    .agent-avatar {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin: 0 auto 2rem;
        background: var(--accent-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: var(--obsidian-black);
        box-shadow: 0 15px 35px rgba(232, 180, 160, 0.3);
        position: relative;
        z-index: 1;
    }

    .agent-name {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: var(--text-light);
        position: relative;
        z-index: 1;
    }

    .agent-title {
        color: var(--text-muted);
        margin-bottom: 2rem;
        font-size: 1rem;
        font-weight: 300;
        position: relative;
        z-index: 1;
    }

    .contact-btn {
        background: var(--accent-gradient);
        color: var(--obsidian-black);
        padding: 1.2rem 2.5rem;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        width: 100%;
        margin-bottom: 1.2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-decoration: none;
        font-size: 1rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .contact-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transition: all 0.4s ease;
        transform: translate(-50%, -50%);
    }

    .contact-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(232, 180, 160, 0.4);
        color: var(--obsidian-black);
    }

    .contact-btn.outline {
        background: transparent;
        color: var(--rose-gold);
        border: 2px solid var(--rose-gold);
    }

    .contact-btn.outline:hover {
        background: var(--rose-gold);
        color: var(--obsidian-black);
    }

    /* Info Cards */
    .info-card-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 0.8rem;
        position: relative;
        z-index: 1;
        letter-spacing: -0.01em;
    }

    .info-card-title i {
        color: var(--rose-gold);
    }

    .plan-details {
        display: grid;
        gap: 1rem;
        position: relative;
        z-index: 1;
    }

    .plan-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(232, 180, 160, 0.1);
        font-size: 1rem;
        transition: all 0.3s ease;
        font-weight: 300;
    }

    .plan-item:last-child {
        border-bottom: none;
    }

    .plan-item:hover {
        padding-left: 15px;
        background: rgba(232, 180, 160, 0.03);
        margin: 0 -15px;
        border-radius: 8px;
    }

    .plan-item strong {
        color: var(--rose-gold);
        font-weight: 600;
    }

    /* Payment Plans */
    .payment-plan {
        background: linear-gradient(145deg, var(--medium-gray), var(--light-gray));
        border-radius: 15px;
        padding: 2rem 1.8rem;
        margin-bottom: 2rem;
        border: 1px solid rgba(232, 180, 160, 0.1);
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .payment-plan:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(232, 180, 160, 0.1);
        border-color: rgba(232, 180, 160, 0.2);
    }

    .plan-name {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--obsidian-black);
        text-align: center;
        padding: 1rem;
        background: var(--accent-gradient);
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Location Section */
    .location-content {
        text-align: center;
        padding: 2.5rem 2rem;
        background: linear-gradient(145deg, var(--medium-gray), var(--light-gray));
        border-radius: 15px;
        border: 1px solid rgba(232, 180, 160, 0.1);
        position: relative;
        z-index: 1;
    }

    .location-icon {
        font-size: 3.5rem;
        color: var(--rose-gold);
        margin-bottom: 1.5rem;
    }

    .location-title {
        font-family: 'Cormorant Garamond', serif;
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .location-description {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .location-btn {
        background: var(--accent-gradient);
        color: var(--obsidian-black);
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.4s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .location-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(232, 180, 160, 0.3);
    }

    /* Quick Actions */
    .quick-actions {
        position: fixed;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-gradient);
        padding: 20px 35px;
        border-radius: 50px;
        display: flex;
        gap: 25px;
        box-shadow: 0 15px 40px rgba(232, 180, 160, 0.4);
        z-index: 1000;
        backdrop-filter: blur(15px);
    }

    .quick-action {
        color: var(--obsidian-black);
        text-decoration: none;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: 25px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .quick-action:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--obsidian-black);
        transform: translateY(-3px);
    }

    /* Mobile Responsive Design */
    @media (max-width: 1024px) {
        .property-layout {
            grid-template-columns: 1fr 350px;
        }

        .property-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .facilities-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 70px;
        }

        .nav-links {
            background-color: var(--medium-gray);
        }

        .property-layout {
            grid-template-columns: 1fr;
            min-height: calc(100vh - 70px);
        }

        .left-panel {
            order: 1;
        }

        .sidebar {
            order: 2;
            border-left: none;
            border-top: 1px solid rgba(232, 180, 160, 0.1);
        }

        .property-hero {
            height: 350px;
        }

        .hero-overlay {
            padding: 2rem 1rem;
        }

        .property-title {
            font-size: 2.8rem;
        }

        .price-badge {
            font-size: 1.2rem;
            padding: 1rem 1rem;
        }

        .content-container {
            padding: 2rem;
        }

        .section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .property-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .facilities-grid {
            grid-template-columns: 1fr;
        }

        .units-grid {
            grid-template-columns: 1fr;
        }

        .unit-details {
            grid-template-columns: 1fr 1fr 60px;
        }

        .sidebar-card {
            padding: 2rem 1.8rem;
        }

        .quick-actions {
            bottom: 15px;
            padding: 15px 25px;
            gap: 20px;
        }

        .quick-action {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .property-hero {
            height: 280px;
        }

        .hero-overlay {
            padding: 1.5rem;
        }

        .property-title {
            font-size: 2.2rem;
        }

        .content-container {
            padding: 1.5rem;
        }

        .stat-item {
            padding: 1rem 1rem;
        }

        .stat-icon {
            font-size: 2rem;
        }

        .stat-value {
            font-size: 2rem;
        }

        .unit-card {
            padding: 2rem 1.5rem;
        }

        .agent-avatar {
            width: 70px;
            height: 70px;
            font-size: 2rem;
        }
    }

    /* Animation Classes */
    .fade-in {
        animation: fadeIn 0.8s ease-in;
    }

    .slide-up {
        animation: slideUp 0.8s ease-out;
    }

    .bounce-in {
        animation: bounceIn 1s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }
        50% {
            opacity: 1;
            transform: scale(1.05);
        }
        70% {
            transform: scale(0.9);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes titleGlow {
        from {
            text-shadow: 0 0 20px rgba(232, 180, 160, 0.5);
        }
        to {
            text-shadow: 0 0 30px rgba(232, 180, 160, 0.8), 0 0 40px rgba(244, 208, 63, 0.3);
        }
    }

    /* Print Styles */
    @media print {
        .quick-actions,
        .gallery-nav,
        .gallery-indicators {
            display: none;
        }

        .property-layout {
            grid-template-columns: 1fr;
        }

        .property-hero {
            height: 200px;
        }
    }