/* Aljoud Property Showcase Styles */
.aljoud-property-showcase {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Tajawal', Arial, sans-serif;
    padding: 40px 20px;
    direction: rtl;
}

.aljoud-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.aljoud-property-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.aljoud-property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.aljoud-property-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.aljoud-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aljoud-property-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.aljoud-property-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.aljoud-property-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    text-align: center;
}

.aljoud-property-area {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aljoud-property-area-label {
    font-weight: 500;
    color: #ffffff;
}

.aljoud-property-area-value {
    color: #ffffff;
}

/* Hover Effects */
.aljoud-property-item.hover-zoom .aljoud-property-image img:hover {
    transform: scale(1.05);
}

.aljoud-property-item.hover-fade:hover {
    opacity: 0.9;
}

.aljoud-property-item.hover-scale:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .aljoud-property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aljoud-property-title {
        font-size: 22px;
    }
    
    .aljoud-property-description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .aljoud-property-grid {
        grid-template-columns: 1fr;
    }
    
    .aljoud-property-image {
        height: 250px;
    }
    
    .aljoud-property-title {
        font-size: 20px;
    }
    
    .aljoud-property-description {
        font-size: 14px;
    }
    
    .aljoud-property-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}