/* ===================================
   PROPERTY SHOWCASE SECTION
   =================================== */

.property-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.property-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.3) 50%,
            transparent 100%);
}

/* Property Showcase Grid */
.property-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

/* Property Card */
.property-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* Property Image */
.property-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-card-image img {
    transform: scale(1.1);
}

.property-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Property Type Badge */
.property-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(212, 175, 55, 0.95);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Property Content */
.property-card-content {
    padding: 30px;
}

.property-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.property-card-location i {
    color: #D4AF37;
}

/* Property Details */
.property-card-details {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.property-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.property-detail-item i {
    color: #D4AF37;
    font-size: 1rem;
}

/* Property Price */
.property-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.property-price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: #D4AF37;
}

.property-price-currency {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Property Features */
.property-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.property-feature-tag {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* View Button */
.property-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #D4AF37;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-view-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateX(5px);
}

.property-view-btn i {
    transition: transform 0.3s ease;
}

.property-view-btn:hover i {
    transform: translateX(5px);
}

/* Showcase CTA */
.showcase-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #f4d03f 100%);
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Loading State */
.property-showcase-loading {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.property-showcase-loading .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.property-showcase-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.property-showcase-empty i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.property-showcase-empty h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .property-card-image {
        height: 250px;
    }

    .property-card-title {
        font-size: 1.3rem;
    }

    .property-price-amount {
        font-size: 1.6rem;
    }

    .property-card-details {
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .property-showcase-section {
        padding: 60px 0;
    }

    .property-card-content {
        padding: 20px;
    }

    .property-card-details {
        gap: 12px;
    }

    .property-detail-item {
        font-size: 0.85rem;
    }
}